summaryrefslogtreecommitdiff
path: root/test/data
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-04-04 20:21:39 -0400
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-04-04 20:21:39 -0400
commita4c7d243f4cddfc4e2b29132fe65fe07ff86bc36 (patch)
treec3ea69779daee88be9c371785e78aedca996a94f /test/data
parentae246093a98ab1386c4422306928091f30a27fda (diff)
Add allowfullscreen="true"
Diffstat (limited to 'test/data')
-rw-r--r--test/data/html/test-document2.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/data/html/test-document2.html b/test/data/html/test-document2.html
index 0561a176..3a22a5bf 100644
--- a/test/data/html/test-document2.html
+++ b/test/data/html/test-document2.html
@@ -57,14 +57,14 @@ document.querySelector('#fullscreen-link1').addEventListener('click', () => togg
<div class="test">
<div class="description">&lt;iframe&gt; element.</div>
- <iframe src="test-document2-frame1.html" style="width: 100%; height: 200px; border: 1px solid #d8d8d8;"></iframe>
+ <iframe src="test-document2-frame1.html" allowfullscreen="true" style="width: 100%; height: 200px; border: 1px solid #d8d8d8;"></iframe>
</div>
<div class="test">
<div class="description">&lt;iframe&gt; element inside of a shadow DOM.</div>
<div id="shadow-iframe-container"></div>
<template id="shadow-iframe-container-content-template">
- <iframe src="test-document2-frame1.html" style="width: 100%; height: 200px; border: 1px solid #d8d8d8;"></iframe>
+ <iframe src="test-document2-frame1.html" allowfullscreen="true" style="width: 100%; height: 200px; border: 1px solid #d8d8d8;"></iframe>
</template>
<script>
(() => {