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

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

Issue 934853002: Move and rename RenderQuote and RenderWordBreak. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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
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>: Render 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 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