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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/style/5017613-1.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, 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/style/5017613-2.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <p>This tests to see that plaintext-only regions can be styled as long as they a re fully selected. The editable, plaintext-only cell should contain bold text, w hich should be implemented with the bold CSS property in the cell's inline style declaration, not with wrapper spans inside the cell.</p>
2 <div id="div" contenteditable="true"><div>foo</div><table border="1" contentedit able="false"><tr><td>non-editable</td><td contenteditable="plaintext-only">plain text-only</td></tr></table></div>
3
4 <script>
5 var div = document.getElementById("div");
6 div.focus();
7 document.execCommand("SelectAll")
8 document.execCommand("Bold");
9 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/style/5017613-2.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698