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

Side by Side Diff: LayoutTests/fast/frames/flattening/iframe-flattening-crash.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.dumpAsText();
6 testRunner.waitUntilDone();
7 internals.settings.setFrameFlatteningEnabled(true);
8 }
9 </script>
10 </head>
11 <body>
12 <style>body { background-color: green; }</style>
13 <p>This test passes if it does not crash <a href="https://bugs.webkit.org/sh ow_bug.cgi?id=52449">https://bugs.webkit.org/show_bug.cgi?id=52449</a></p>
14
15 <p><iframe id="if" width="20%" height="20%" scrolling=auto src="data:text/h tml,
16 <html>
17 <script>
18 function test2(){
19 var i = document.getElementsByTagName('html')[0].clientWidth;
20 if (window.testRunner)
21 testRunner.notifyDone();
22 if (window.testRunner)
23 internals.settings.setFrameFlatteningEnabled(true);
24 }
25 </script>
26 <body onresize='test2();'>
27 <div style='position: absolute; width: 400px; height: 400px; left: 0; top: 0 px;' id='p'><input id='in' value='abcd'></div>
28 </body></html>
29 ">
30 </body>
31 </html>
32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698