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

Side by Side Diff: LayoutTests/fullscreen/parent-flow-inline-with-block-child.html

Issue 8218021: Merge 97088 - Exiting fullscreen shouldn't crash if the element that was fullscreened had associa... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 2 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
1 <style> 1 <style>
2 body { 2 body {
3 font-family: ahem; 3 font-family: ahem;
4 -webkit-font-smoothing: none; 4 -webkit-font-smoothing: none;
5 } 5 }
6 </style> 6 </style>
7 7
8 <div> 8 <div>
9 <span>1</span> 9 <span>1</span>
10 <span id='c2'>2</span> 10 <span id='c2'>2</span>
(...skipping 18 matching lines...) Expand all
29 29
30 document.addEventListener('webkitfullscreenchange', spanEnteredFullScree n); 30 document.addEventListener('webkitfullscreenchange', spanEnteredFullScree n);
31 31
32 document.addEventListener('keydown', function () { 32 document.addEventListener('keydown', function () {
33 span.webkitRequestFullScreen(); 33 span.webkitRequestFullScreen();
34 }); 34 });
35 if (window.eventSender) 35 if (window.eventSender)
36 eventSender.keyDown('a'); 36 eventSender.keyDown('a');
37 } 37 }
38 </script> 38 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698