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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/crash-in-attachFirstLetterTextLayoutObjects.html

Issue 2752163003: Clear pseudoElement from ElementRareData when FirstLetterPseudoElement doesn't have a LayoutObject (Closed)
Patch Set: Created 3 years, 9 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
OLDNEW
(Empty)
1 <style>
esprehn 2017/04/06 00:08:59 Can we add a <!DOCTYPE html>
nainar 2017/04/06 00:20:45 Done.
2 .c3 { -webkit-appearance: button; }
3 .c3:nth-last-child(even) { display: table-row; }
4 .c14 { float: left; }
5 .c14::first-letter { float: inherit; }
6 </style>
7
8 <div id="div" class="c14">
9 <div class="c3">
10 Test passes if it doesn't crash.
11 </div>
12 </div>
13 <script>
14 setTimeout('div.appendChild(document.createElement("div"));', 0);
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698