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

Side by Side Diff: LayoutTests/fast/css-generated-content/quote-crash-93750.html

Issue 1106693002: Move the anonymous decoration to decoratedName. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 | Annotate | Revision Log
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 2
3 <style> 3 <style>
4 .fixed::before { 4 .fixed::before {
5 position:fixed; 5 position:fixed;
6 } 6 }
7 </style> 7 </style>
8 8
9 <script> 9 <script>
10 if (window.testRunner) window.testRunner.dumpAsText(); 10 if (window.testRunner) window.testRunner.dumpAsText();
11 onload = function(){ 11 onload = function(){
12 document.designMode = "on"; 12 document.designMode = "on";
13 document.execCommand("SelectAll"); 13 document.execCommand("SelectAll");
14 document.execCommand("Indent", false); 14 document.execCommand("Indent", false);
15 } 15 }
16 </script> 16 </script>
17 17
18 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=93750">93750</a>: Layout Quote corrupts doubly linked list on insertion before head of list</p> 18 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=93750">93750</a>: Layout Quote (anonymous) corrupts doubly linked list on insertion before head of list</ p>
19 <p>It passes if it does not CRASH or ASSERT.</p> 19 <p>It passes if it does not CRASH or ASSERT.</p>
20 20
21 <q class="fixed"></q> 21 <q class="fixed"></q>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698