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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/text-iterator/backward-textiterator-first-letter-crash.html

Issue 2235643002: Code cleanup related to unified text checker (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@EnableUnifiedTextCheckerByDefault
Patch Set: Rebased on removal of grammar-checking code Created 4 years, 4 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 <style> 1 <style>
2 div:first-letter { margin-top: 0em; } 2 div:first-letter { margin-top: 0em; }
3 </style> 3 </style>
4 <script> 4 <script>
5 if (window.testRunner) { 5 if (window.testRunner) {
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 testRunner.waitUntilDone(); 7 testRunner.waitUntilDone();
8 } 8 }
9 if (window.internals)
10 internals.settings.setUnifiedTextCheckerEnabled(true);
11 function done() { 9 function done() {
12 document.body.innerHTML = 'PASS if WebKit did not hit assertions'; 10 document.body.innerHTML = 'PASS if WebKit did not hit assertions';
13 if (window.testRunner) 11 if (window.testRunner)
14 testRunner.notifyDone(); 12 testRunner.notifyDone();
15 } 13 }
16 </script> 14 </script>
17 <body onload="setTimeout(done, 100);"><div>AB<select autofocus contenteditable> 15 <body onload="setTimeout(done, 100);"><div>AB<select autofocus contenteditable>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698