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

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

Issue 2109543002: Make SpellChecker::didBeginEdit() not to crash with IFRAME parameter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 2016-06-28T17:34:15 Created 4 years, 5 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);
9 function done() { 11 function done() {
10 document.body.innerHTML = 'PASS if WebKit did not hit assertions'; 12 document.body.innerHTML = 'PASS if WebKit did not hit assertions';
11 if (window.testRunner) 13 if (window.testRunner)
12 testRunner.notifyDone(); 14 testRunner.notifyDone();
13 } 15 }
14 </script> 16 </script>
15 <body onload="setTimeout(done, 100);"><div>AB<select autofocus contenteditable> 17 <body onload="setTimeout(done, 100);"><div>AB<select autofocus contenteditable>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698