Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(682)

Side by Side Diff: LayoutTests/fullscreen/full-screen-enabled.html

Issue 9950115: Revert 111028 - Support W3C Full Screen API proposal (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <body>
2 <div>This tests the <code>fullscreenEnabled</code> property laid out in section 4 of the W3C
3 <a href="http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html">Full Scree n API</a></div>
4 <script src="full-screen-test.js"></script>
5 <script>
6 var iframe = document.documentElement.appendChild(document.createElement('if rame'));
7 iframe.setAttribute('webkitallowfullscreen', 'true');
8 var iframe2 = document.documentElement.appendChild(document.createElement('i frame'));
9 testExpected('iframe.contentDocument.webkitFullscreenEnabled', true);
10 testExpected('iframe2.contentDocument.webkitFullscreenEnabled', false);
11 endTest();
12 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fullscreen/full-screen-element-stack-expected.txt ('k') | LayoutTests/fullscreen/full-screen-enabled-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698