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

Side by Side Diff: LayoutTests/fast/frames/flattening/frameset-flattening-subframe-resize.html

Issue 13963006: Remove frame flattening support as Chromium has no intention of using it (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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 <html>
2 <head>
3 <script type="text/javascript">
4 if (window.testRunner && window.internals) {
5 testRunner.waitUntilDone();
6 internals.settings.setFrameFlatteningEnabled(true);
7 }
8
9 function test()
10 {
11 setTimeout(contentResize, 50);
12 }
13
14 function contentResize()
15 {
16 var div = frames[0].document.getElementById('box');
17 div.style.height='300';
18 div.style.width='300';
19 div.style.backgroundColor='blue';
20
21 if (window.testRunner) {
22 frames[0].document.body.offsetTop;
23 testRunner.notifyDone();
24 }
25 }
26 </script>
27 </head>
28 <frameset border=0 cols="*,700">
29 <frame src="resources/frameset-flattening-subframe-resize.html" onload="test ();">
30 <frame>
31 </frameset>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698