Chromium Code Reviews| 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..bbd430bf00609939d6b1f5c07e10af9e4726c1b0 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/editing/execCommand/queryCommandState-04.html |
| @@ -0,0 +1,40 @@ |
| +<!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); |
| +} |
| + |
| +test(function() {test_sub()}, "run queryCommandState('subscript')"); |
| +test(function() {test_sup()}, "run queryCommandState('superscript')"); |
| + |
| +// Test for Mac and Windows behaviors. |
| +for (const platform of ['mac', 'win']) { |
| + if (window.internals) |
|
yosin_UTC9
2016/05/30 06:43:41
nit: How about this? Since, we don't want to write
|
| + internals.settings.setEditingBehavior(platform); |
| + else |
| + break; |
| + test(function() {test_sub()}, platform + ": run queryCommandState('subscript')"); |
| + test(function() {test_sup()}, platform + ": run queryCommandState('superscript')"); |
| +} |
| +</script> |