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

Side by Side Diff: LayoutTests/fast/runin/runin-not-go-into-float.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 <!DOCTYPE html>
2 <!-- PASS on one line, followed by EFABCD on the second line. All text should be of same size 40 px. -->
3 <html>
4 <body style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;">
5 <style>
6 #target:before {
7 content: "PASS";
8 display: run-in;
9 color: green;
10 }
11 span:before {
12 content: "EF";
13 }
14 </style>
15 <div id="target" style="color: blue">
16 <span style="float: left">AB</span>
17 <div id="inner">CD</div>
18 </div>
19 <script>
20 document.body.offsetTop;
21 document.body.style.fontSize = "40px";
22 </script>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698