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

Side by Side Diff: LayoutTests/fast/runin/move-run-in-original-position-crash.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: 50px; -webkit-font-smoothing: none;">
3 <!-- 'A' orange box followed by 'B' purple box in next line. -->
4 <body>
5 <style>
6 .li1 { display: run-in; color: orange; }
7 .div1::before { display: table-row; content: 'B'; color: purple; }
8 </style>
9 <script>
10 document.body.offsetTop;
11 li1 = document.createElement('li');
12 li1.setAttribute('class', 'li1');
13 li1.appendChild(document.createTextNode('A'));
14 document.body.appendChild(li1);
15 div1 = document.createElement('div');
16 document.body.appendChild(div1);
17 document.body.offsetTop;
18 div1.setAttribute('class', 'div1');
19 </script>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698