| Index: third_party/WebKit/LayoutTests/fast/html/script-tests/main-element.js
|
| diff --git a/third_party/WebKit/LayoutTests/fast/html/script-tests/main-element.js b/third_party/WebKit/LayoutTests/fast/html/script-tests/main-element.js
|
| deleted file mode 100644
|
| index 70b690b3f4b5b080d95347b484f73290ca66e4ba..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/html/script-tests/main-element.js
|
| +++ /dev/null
|
| @@ -1,41 +0,0 @@
|
| -description('Various tests for the main element.');
|
| -
|
| -var testParent = document.createElement('div');
|
| -document.body.appendChild(testParent);
|
| -
|
| -debug('<main> closes <p>:');
|
| -testParent.innerHTML = '<p>Test that <main id="main1">an main element</main> closes <p>.</p>';
|
| -var main1 = document.getElementById('main1');
|
| -shouldBeFalse('main1.parentNode.nodeName == "p"');
|
| -
|
| -debug('<p> does not close <main>:');
|
| -testParent.innerHTML = '<main>Test that <p id="p1">a p element</p> does not close an main element.</main>';
|
| -var p1 = document.getElementById('p1');
|
| -shouldBe('p1.parentNode.nodeName', '"MAIN"');
|
| -
|
| -debug('<main> can be nested inside <main>:');
|
| -testParent.innerHTML = '<main id="main2">Test that <main id="main3">an main element</main> can be nested inside another.</main>';
|
| -var main3 = document.getElementById('main3');
|
| -shouldBe('main3.parentNode.id', '"main2"');
|
| -
|
| -debug('Residual style:');
|
| -testParent.innerHTML = '<b><main id="main4">This text should be bold.</main> <span id="span1">This is also bold.</span></b>';
|
| -function getWeight(id) {
|
| - return document.defaultView.getComputedStyle(document.getElementById(id), null).getPropertyValue('font-weight');
|
| -}
|
| -shouldBe('getWeight("main4")', '"bold"');
|
| -shouldBe('getWeight("span1")', '"bold"');
|
| -document.body.removeChild(testParent);
|
| -
|
| -debug('FormatBlock:');
|
| -var editable = document.createElement('div');
|
| -editable.innerHTML = '[<span id="span2">The text will be a child of <main>.</span>]';
|
| -document.body.appendChild(editable);
|
| -editable.contentEditable = true;
|
| -var selection = window.getSelection();
|
| -selection.selectAllChildren(editable);
|
| -document.execCommand('FormatBlock', false, 'main');
|
| -selection.removeAllRanges();
|
| -shouldBe('document.getElementById("span2").parentNode.nodeName', '"MAIN"');
|
| -document.body.removeChild(editable);
|
| -
|
|
|