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

Unified Diff: third_party/WebKit/LayoutTests/editing/execCommand/queryCommandState-04.html

Issue 1986563002: Apply vertical-align style of <sub> and <sup> to child elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: simplify the test case Created 4 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/EditingStyle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/editing/execCommand/queryCommandState-04.html
diff --git a/third_party/WebKit/LayoutTests/editing/execCommand/queryCommandState-04.html b/third_party/WebKit/LayoutTests/editing/execCommand/queryCommandState-04.html
new file mode 100644
index 0000000000000000000000000000000000000000..c54a45ec8ee6fc641daae1d69a33b7ee2389c93f
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/editing/execCommand/queryCommandState-04.html
@@ -0,0 +1,36 @@
+<!doctype HTML>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<div contenteditable="true">
+<sub><i>1. Make text subscript and italic</i></sub>
+<sup><i>2. Make text superscript and italic</i></sup>
+</div>
+<div id="log"></div>
+<script>
+function test_sub() {
+ document.getSelection().removeAllRanges();
+ var range = document.createRange();
+ range.selectNode(document.querySelector('i'));
+ document.getSelection().addRange(range);
+
+ assert_equals(document.queryCommandState('subscript'), true);
+}
+
+function test_sup() {
+ document.getSelection().removeAllRanges();
+ var range = document.createRange();
+ range.selectNode(document.querySelectorAll('i')[1]);
+ document.getSelection().addRange(range);
+
+ assert_equals(document.queryCommandState('superscript'), true);
+}
+
+function test_all(platform) {
+ if (platform)
+ internals.settings.setEditingBehavior(platform);
+ test(test_sub, `${platform}: run queryCommandState('subscript')`);
+ test(test_sup, `${platform}: run queryCommandState('superscript')`);
+}
+
+(window.internals ? ['mac', 'win'] : ['']).forEach(test_all);
joone 2016/05/30 09:16:18 ==> (window.internals ? ['mac', 'win',''] : ['']).
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/EditingStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698