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

Side by Side Diff: LayoutTests/fast/runin/runin-between-list-marker-and-before-content.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 <html style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;">
3 <!-- Test passes if you see RUNIN, followed by list marker and ABCD. All text sh ould be of same 50px size. -->
4 <style>
5 li:before { content: "AB"; }
6 </style>
7 <div style="display: run-in; color: green">RUNIN</div>
8 <li style="color: orange">CD</li>
9 <script>
10 document.body.offsetTop;
11 document.body.style.fontSize = "50px";
12 </script>
13 </body>
14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698