Index: LayoutTests/fullscreen/api/document-fullscreen-enabled.html |
diff --git a/LayoutTests/fullscreen/api/document-fullscreen-enabled.html b/LayoutTests/fullscreen/api/document-fullscreen-enabled.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..07428479c8577a7f1ed8f3770ab99093833f09e4 |
--- /dev/null |
+++ b/LayoutTests/fullscreen/api/document-fullscreen-enabled.html |
@@ -0,0 +1,17 @@ |
+<!DOCTYPE html> |
+<title>Document.fullscreenEnabled</title> |
+<script src="../../resources/testharness.js"></script> |
+<script src="../../resources/testharnessreport.js"></script> |
+<div id="log"></div> |
+<iframe></iframe> |
+<iframe allowfullscreen></iframe> |
+<script> |
+test(function() |
+{ |
+ assert_true(document.fullscreenEnabled, "top-level document"); |
+ |
+ var iframes = document.getElementsByTagName("iframe"); |
+ assert_false(iframes[0].contentDocument.fullscreenEnabled, "iframe without allowfullscreen"); |
+ assert_true(iframes[1].contentDocument.fullscreenEnabled, "iframe with allowfullscreen"); |
+}); |
+</script> |