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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/pasteboard/5245519.html

Issue 2685793002: Remove Apple-style-span CSS class support (Closed)
Patch Set: Update test cases Created 3 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
(Empty)
1 <div id="description">This tests for a crash when pasting content that contains Apple-style-spans that don't have renderers.' You should see 'Hello World!'</div >
2 <div id="edit" contenteditable="true"><br></div>
3
4 <script>
5 edit = document.getElementById("edit");
6 description = document.getElementById("description");
7 edit.focus();
8 document.execCommand("InsertHTML", false, "Hello <span style='display:none;' cla ss='Apple-style-span'></span>World!");
9 if (window.testRunner) {
10 window.testRunner.dumpAsText();
11 document.body.innerText = description.innerText + "\n" + edit.innerHTML;
12 }
13 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698