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

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: 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 <style>
leviw_travelin_and_unemployed 2015/05/19 18:32:12 Nit: doctype :p
2 div {
3 position: fixed
4 }
leviw_travelin_and_unemployed 2015/05/19 18:32:12 Nit: Un-indent this brace
5 </style>
6 crbug.com/477940: Don't set positioned objects for layout while laying out posit ioned objects. This test should not ASSERT.
7 <div>
8 <div>
9 <script>
10 if (window.testRunner)
11 testRunner.dumpAsText();
12 thead = document.createElement("thead");
13 document.body.appendChild(thead);
14 document.body.offsetTop;
15 document.body.removeChild(thead);
16 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698