summaryrefslogtreecommitdiff
path: root/test/data/html/test-document2.html
blob: 6d174571ce263b40764d677c132410f649f4f22c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width,initial-scale=1" />
        <title>Yomichan Manual Tests</title>
        <link rel="icon" type="image/gif" href="data:image/gif;base64,R0lGODlhEAAQAKEBAAAAAP///////////yH5BAEKAAIALAAAAAAQABAAAAImFI6Zpt0B4YkS0TCpq07xbmEgcGVRUpLaI46ZG7ppalY0jDCwUAAAOw==" />
        <link rel="stylesheet" href="test-stylesheet.css" />
        <script src="test-document2-script.js"></script>
    </head>
<body>

    <h1>Yomichan Manual Tests</h1>
    <y-description>Manual tests involving fullscreen elements, &lt;iframe&gt;s, and shadow DOMs.</y-description>

    <y-test>
        <y-description>Standard content.</y-description>
        <div class="fullscreen-element" style="width: 100%; height: 200px; border: 1px solid #d8d8d8; position: relative;"><div style="background-color: #f8f8f8; padding: 0.5em; position: absolute; left: 0; top: 0; bottom: 0; right: 0;">
            <div>
                ありがとう
            </div>
            <div>
                <a href="#" class="fullscreen-link">Toggle fullscreen</a>
            </div>
        </div></div>
    </y-test>

    <y-test data-shadow-mode="open">
        <y-description>Content inside of an open shadow DOM.</y-description>
        <div class="template-content-container"></div>
        <template>
            <link rel="stylesheet" href="test-stylesheet.css" />
            <div class="fullscreen-element" style="width: 100%; height: 200px; border: 1px solid #d8d8d8; position: relative;"><div style="background-color: #f8f8f8; padding: 0.5em; position: absolute; left: 0; top: 0; bottom: 0; right: 0;">
                <div>
                    ありがとう
                </div>
                <div>
                    <a href="#" class="fullscreen-link">Toggle fullscreen</a>
                </div>
            </div></div>
        </template>
    </y-test>

    <y-test data-shadow-mode="closed">
        <y-description>Content inside of a closed shadow DOM.</y-description>
        <div class="template-content-container"></div>
        <template>
            <link rel="stylesheet" href="test-stylesheet.css" />
            <div class="fullscreen-element" style="width: 100%; height: 200px; border: 1px solid #d8d8d8; position: relative;"><div style="background-color: #f8f8f8; padding: 0.5em; position: absolute; left: 0; top: 0; bottom: 0; right: 0;">
                <div>
                    ありがとう
                </div>
                <div>
                    <a href="#" class="fullscreen-link">Toggle fullscreen</a>
                </div>
            </div></div>
        </template>
    </y-test>

    <y-test>
        <y-description>&lt;iframe&gt; element.</y-description>
        <iframe src="test-document2-frame1.html" allowfullscreen="true" style="width: 100%; height: 200px; border: 1px solid #d8d8d8;"></iframe>
    </y-test>

    <y-test data-shadow-mode="open">
        <y-description>&lt;iframe&gt; element inside of an open shadow DOM.</y-description>
        <div class="template-content-container"></div>
        <template>
            <iframe src="test-document2-frame1.html" allowfullscreen="true" style="width: 100%; height: 200px; border: 1px solid #d8d8d8;"></iframe>
        </template>
    </y-test>

    <y-test data-shadow-mode="closed">
        <y-description>&lt;iframe&gt; element inside of a closed shadow DOM.</y-description>
        <div class="template-content-container"></div>
        <template>
            <iframe src="test-document2-frame1.html" allowfullscreen="true" style="width: 100%; height: 200px; border: 1px solid #d8d8d8;"></iframe>
        </template>
    </y-test>

    <script>
for (const element of document.querySelectorAll('y-test')) {
    setup(element);
}
    </script>

</body>
</html>