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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/layout/subtree-layout-percent-height-assert.html

Issue 1755543002: Fix SubtreeLayoutScope not to schedule relayout (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 4 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/layout/subtree-layout-percent-height-assert-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .scope {
4 width: 200px;
5 height: 200px;
6 overflow: hidden;
7 }
8 </style>
9 <div class="scope">
10 <table>
11 <tr>
12 <img src="autumn.jpg" width="150" height="148">
13 <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
14 <foreignObject width="100%" height="100%">
15 <div style="width:100%; height:100%;"></div>
16 </foreignObject>
17 </svg>
18 </tr>
19 </table>
20 </div>
21 <p>Test passes if it doesn't assert.</p>
22 <script>
23 if (window.testRunner)
24 testRunner.dumpAsText();
25 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/layout/subtree-layout-percent-height-assert-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698