2020-04-04 20:56:06 +00:00
|
|
|
<!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>
|
2020-08-22 17:03:35 +00:00
|
|
|
<style id="container-styles">
|
|
|
|
.container {
|
|
|
|
width: 100%;
|
|
|
|
height: 200px;
|
|
|
|
border: 1px solid #d8d8d8;
|
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.container-inner {
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
padding: 0.5em;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
</style>
|
2020-04-04 20:56:06 +00:00
|
|
|
<body>
|
|
|
|
|
|
|
|
<h1>Yomichan Manual Tests</h1>
|
2020-05-10 18:09:04 +00:00
|
|
|
<y-description>Manual tests involving fullscreen elements, <iframe>s, and shadow DOMs.</y-description>
|
2020-04-04 20:56:06 +00:00
|
|
|
|
2020-05-10 18:09:04 +00:00
|
|
|
<y-test>
|
|
|
|
<y-description>Standard content.</y-description>
|
2020-08-22 17:03:35 +00:00
|
|
|
<div class="fullscreen-element container"><div class="container-inner">
|
2020-04-04 20:56:06 +00:00
|
|
|
<div>
|
|
|
|
ありがとう
|
|
|
|
</div>
|
|
|
|
<div>
|
2020-05-10 18:09:04 +00:00
|
|
|
<a href="#" class="fullscreen-link">Toggle fullscreen</a>
|
2020-04-04 20:56:06 +00:00
|
|
|
</div>
|
|
|
|
</div></div>
|
2020-05-10 18:09:04 +00:00
|
|
|
</y-test>
|
2020-04-04 20:56:06 +00:00
|
|
|
|
2020-05-10 18:09:04 +00:00
|
|
|
<y-test data-shadow-mode="open">
|
|
|
|
<y-description>Content inside of an open shadow DOM.</y-description>
|
|
|
|
<div class="template-content-container"></div>
|
|
|
|
<template>
|
2020-04-04 20:56:06 +00:00
|
|
|
<link rel="stylesheet" href="test-stylesheet.css" />
|
2020-08-22 17:03:35 +00:00
|
|
|
<div class="fullscreen-element container"><div class="container-inner">
|
2020-04-04 20:56:06 +00:00
|
|
|
<div>
|
|
|
|
ありがとう
|
|
|
|
</div>
|
|
|
|
<div>
|
2020-05-10 18:09:04 +00:00
|
|
|
<a href="#" class="fullscreen-link">Toggle fullscreen</a>
|
2020-04-04 20:56:06 +00:00
|
|
|
</div>
|
|
|
|
</div></div>
|
|
|
|
</template>
|
2020-05-10 18:09:04 +00:00
|
|
|
</y-test>
|
2020-04-04 20:56:06 +00:00
|
|
|
|
2020-05-10 18:09:04 +00:00
|
|
|
<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" />
|
2020-08-22 17:03:35 +00:00
|
|
|
<div class="fullscreen-element container"><div class="container-inner">
|
2020-05-10 18:09:04 +00:00
|
|
|
<div>
|
|
|
|
ありがとう
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<a href="#" class="fullscreen-link">Toggle fullscreen</a>
|
|
|
|
</div>
|
|
|
|
</div></div>
|
|
|
|
</template>
|
|
|
|
</y-test>
|
|
|
|
|
|
|
|
<y-test>
|
|
|
|
<y-description><iframe> element.</y-description>
|
2020-08-22 17:03:35 +00:00
|
|
|
<iframe src="test-document2-frame1.html" allowfullscreen="true" class="container"></iframe>
|
2020-05-10 18:09:04 +00:00
|
|
|
</y-test>
|
2020-04-04 20:56:06 +00:00
|
|
|
|
2020-05-10 18:09:04 +00:00
|
|
|
<y-test data-shadow-mode="open">
|
|
|
|
<y-description><iframe> element inside of an open shadow DOM.</y-description>
|
|
|
|
<div class="template-content-container"></div>
|
|
|
|
<template>
|
2020-08-22 17:03:35 +00:00
|
|
|
<iframe src="test-document2-frame1.html" allowfullscreen="true" class="container"></iframe>
|
2020-04-04 20:56:06 +00:00
|
|
|
</template>
|
2020-05-10 18:09:04 +00:00
|
|
|
</y-test>
|
2020-04-04 20:56:06 +00:00
|
|
|
|
2020-05-10 18:09:04 +00:00
|
|
|
<y-test data-shadow-mode="closed">
|
|
|
|
<y-description><iframe> element inside of a closed shadow DOM.</y-description>
|
|
|
|
<div class="template-content-container"></div>
|
|
|
|
<template>
|
2020-08-22 17:03:35 +00:00
|
|
|
<iframe src="test-document2-frame1.html" allowfullscreen="true" class="container"></iframe>
|
2020-04-17 21:33:49 +00:00
|
|
|
</template>
|
2020-05-10 18:09:04 +00:00
|
|
|
</y-test>
|
|
|
|
|
2020-08-22 17:03:35 +00:00
|
|
|
<y-test>
|
|
|
|
<y-description>SVG <img>.</y-description>
|
|
|
|
<img src="test-document2-frame2.svg" class="container">
|
|
|
|
</y-test>
|
|
|
|
|
|
|
|
<y-test>
|
|
|
|
<y-description>SVG <object>.</y-description>
|
|
|
|
<object data="test-document2-frame2.svg" type="image/svg+xml" class="container"></object>
|
|
|
|
</y-test>
|
|
|
|
|
|
|
|
<y-test>
|
|
|
|
<y-description>SVG <embed>.</y-description>
|
|
|
|
<embed type="image/svg+xml" src="test-document2-frame2.svg" class="container">
|
|
|
|
</y-test>
|
|
|
|
|
|
|
|
<y-test>
|
|
|
|
<y-description>SVG <iframe>.</y-description>
|
|
|
|
<iframe src="test-document2-frame2.svg" allowfullscreen="true" class="container"></iframe>
|
|
|
|
</y-test>
|
|
|
|
|
|
|
|
<y-test>
|
|
|
|
<y-description>SVG <svg>.</y-description>
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="container" style="background-color: #f8f8f8;">
|
|
|
|
<text
|
|
|
|
x="7"
|
|
|
|
y="12"
|
|
|
|
style="
|
|
|
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
fill: #000000;
|
|
|
|
dominant-baseline: hanging;"
|
|
|
|
>
|
|
|
|
ありがとう
|
|
|
|
</text>
|
|
|
|
</svg>
|
|
|
|
</y-test>
|
|
|
|
|
|
|
|
|
2020-05-10 18:09:04 +00:00
|
|
|
<script>
|
|
|
|
for (const element of document.querySelectorAll('y-test')) {
|
|
|
|
setup(element);
|
|
|
|
}
|
|
|
|
</script>
|
2020-04-17 21:33:49 +00:00
|
|
|
|
2020-04-04 20:56:06 +00:00
|
|
|
</body>
|
2020-04-17 21:33:49 +00:00
|
|
|
</html>
|