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

Side by Side Diff: LayoutTests/fast/block/positioning/setting-layout-on-posobjs-while-laying-them-out.html

Issue 1128713004: Don't mark a positioned object for layout when we've just laid it out. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 5 years, 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 div {
4 position: fixed
5 }
6 </style>
7 crbug.com/477940: Don't set positioned objects for layout while laying out posit ioned objects. This test should not ASSERT.
8 <div>
9 <div>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13 thead = document.createElement("thead");
14 document.body.appendChild(thead);
15 document.body.offsetTop;
16 document.body.removeChild(thead);
17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698