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

Side by Side Diff: LayoutTests/fast/runin/generated4.html

Issue 53373003: Remove display:run-in as per https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/_tHSX… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix test Created 7 years, 1 month 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>
2 .hasRunIn:before {
3 content: "FAIL";
4 display: run-in;
5 color: red;
6 }
7 </style>
8
9 <ul class="hasRunIn">
10 <li>x</li>
11 </ul>
12
13 <div>
14 <div class="hasRunIn">
15 <p>x</p>
16 </div>
17 </div>
18
19 <script>
20 // Force layout.
21 document.body.clientHeight;
22
23 // This is not a Live Collection, so it is safe to iterate.
24 var elems = document.querySelectorAll('.hasRunIn');
25 for (var i=0; i<elems.length; ++i)
26 elems[i].className = '';
27 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/runin/generated3-expected.txt ('k') | LayoutTests/fast/runin/generated4-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698