diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-04 20:21:39 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-04 20:21:39 -0400 |
commit | a4c7d243f4cddfc4e2b29132fe65fe07ff86bc36 (patch) | |
tree | c3ea69779daee88be9c371785e78aedca996a94f | |
parent | ae246093a98ab1386c4422306928091f30a27fda (diff) |
Add allowfullscreen="true"
-rw-r--r-- | test/data/html/test-document2.html | 4 |
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"><iframe> 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"><iframe> 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> (() => { |