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

Side by Side Diff: LayoutTests/fast/css-generated-content/bug-106384.html

Issue 12042093: Merge 139788 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 11 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
« no previous file with comments | « no previous file | LayoutTests/fast/css-generated-content/bug-106384-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <style> 3 <style>
4 ruby:after { 4 ruby:after {
5 display: block; 5 display: block;
6 content: ""; 6 content: "";
7 } 7 }
8 </style> 8 </style>
9 9
10 <p> 10 <p>
11 Bug 106384: Heap-use-after-free in WebCore::RenderObject::willBeRemovedFromT ree. 11 Bug 106384: Heap-use-after-free in WebCore::RenderObject::willBeRemovedFromT ree.
12 </p> 12 </p>
13 13
14 <script> 14 <script>
15 if (window.testRunner) 15 if (window.testRunner)
16 testRunner.dumpAsText(); 16 testRunner.dumpAsText();
17 17
18 onload = function() { 18 onload = function() {
19 var ruby = document.createElement('ruby'); 19 var ruby = document.createElement('ruby');
20 document.body.appendChild(ruby); 20 document.body.appendChild(ruby);
21 // Cause a layout. 21 // Cause a layout.
22 document.body.offsetLeft; 22 document.body.offsetLeft;
23 ruby.appendChild(document.createTextNode('Passed if this test did not crash or assert.')); 23 ruby.appendChild(document.createTextNode('Passed if this test did not crash or assert.'));
24 }; 24 };
25 </script> 25 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css-generated-content/bug-106384-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698