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

Side by Side Diff: LayoutTests/fast/frames/flattening/iframe-flattening-nested.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 <style type="text/css" media="screen">
4 iframe {
5 border: 1px solid black;
6 background-color: white;
7 }
8 </style>
9 <script type="text/javascript">
10 function test()
11 {
12 if (window.internals)
13 internals.settings.setFrameFlatteningEnabled(true);
14 // Force synchronous layout.
15 document.body.offsetHeight;
16 }
17 </script>
18 </head>
19 <body onload="test()">
20 <style>body { background-color: green; }</style>
21
22 <p><iframe width="500px" height="400px" src="resources/intermediate-frame.ht ml">
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698