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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/counters/counter-reparent-table-children-crash.html

Issue 1852603002: Replacing most of web_task.h with base::Closure + base::WeakPtrFactory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move-mocks-to-test-runner
Patch Set: Rebasing... Created 4 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
« no previous file with comments | « components/test_runner/web_view_test_client.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <style> 2 <style>
3 td { 3 td {
4 counter-increment: list-item; 4 counter-increment: list-item;
5 } 5 }
6 </style> 6 </style>
7 <script> 7 <script>
8 if (window.testRunner) { 8 if (window.testRunner) {
9 testRunner.waitUntilDone(); 9 testRunner.waitUntilDone();
10 } 10 }
11 11
12 function crash() { 12 function crash() {
13 document.body.innerHTML = "PASS: Malformed table counters do not cause crash "; 13 document.body.innerHTML = "PASS: Malformed table counters do not cause crash ";
14 if (window.testRunner) { 14 if (window.testRunner) {
15 testRunner.dumpAsText();
15 testRunner.notifyDone(); 16 testRunner.notifyDone();
16 testRunner.dumpAsText();
17 } 17 }
18 } 18 }
19 </script> 19 </script>
20 <body onload="crash()"> 20 <body onload="crash()">
21 <table> 21 <table>
22 <tbody> 22 <tbody>
23 <td> 23 <td>
24 </tbody> 24 </tbody>
25 <ol>re-parent me</ol> 25 <ol>re-parent me</ol>
26 <ol>re-parent me</ol> 26 <ol>re-parent me</ol>
27 </td> 27 </td>
28 <td></td> 28 <td></td>
29 </table> 29 </table>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW
« no previous file with comments | « components/test_runner/web_view_test_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698