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

Unified Diff: third_party/WebKit/LayoutTests/editing/style/5017613-2.html

Issue 2179033004: Convert editing/style/5017613-*.html to use w3c test harness (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/editing/style/5017613-2.html
diff --git a/third_party/WebKit/LayoutTests/editing/style/5017613-2.html b/third_party/WebKit/LayoutTests/editing/style/5017613-2.html
deleted file mode 100644
index ec323a3f5049dc84bcd5b68cfc5c825936f33bac..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/style/5017613-2.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<p>This tests to make sure that plaintext-only regions aren't styled if they aren't fully selected. Only <b>foo</b> should be bold below.</p>
-<div id="div" contenteditable="true"><div id="start">foo</div><table border="1" contenteditable="false"><tr><td>non-editable</td><td contenteditable="plaintext-only"><span id="end">plaintext</span>-only</td></tr></table></div>
-
-<script>
-var start = document.getElementById("start");
-var end = document.getElementById("end");
-var selection = window.getSelection();
-selection.setBaseAndExtent(start, 0, end, end.childNodes.length);
-document.execCommand("Bold");
-</script>

Powered by Google App Engine
This is Rietveld 408576698