| Index: third_party/WebKit/LayoutTests/fast/html/hgroup-element.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/html/hgroup-element.html b/third_party/WebKit/LayoutTests/fast/html/hgroup-element.html
|
| index d312854fefea9f3736d94b002fbcf021cbb46160..f446732e1ac63f2007647eb5fef437ad5316c376 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/html/hgroup-element.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/html/hgroup-element.html
|
| @@ -4,6 +4,49 @@
|
| <script src="../../resources/js-test.js"></script>
|
| </head>
|
| <body>
|
| -<script src="script-tests/hgroup-element.js"></script>
|
| +<script>
|
| +description('Various tests for the hgroup element.');
|
| +
|
| +var testParent = document.createElement('div');
|
| +document.body.appendChild(testParent);
|
| +
|
| +debug('<hgroup> closes <p>:');
|
| +testParent.innerHTML = '<p>Test that <hgroup id="hgroup1"><h1>a hgroup element</h1></hgroup> closes <p>.</p>';
|
| +var hgroup1 = document.getElementById('hgroup1');
|
| +shouldBeFalse('hgroup1.parentNode.nodeName == "p"');
|
| +
|
| +debug('<p> does not close <hgroup>:');
|
| +testParent.innerHTML = '<hgroup>Test that <p id="p1">a p element</p> does not close a hgroup element.</hgroup>';
|
| +var p1 = document.getElementById('p1');
|
| +shouldBe('p1.parentNode.nodeName', '"HGROUP"');
|
| +
|
| +// Note: hgroup *should* have only h1-h6 elements, but *can* have any elements.
|
| +debug('<hgroup> can be nested inside <hgroup>:');
|
| +testParent.innerHTML = '<hgroup id="hgroup2">Test that <hgroup id="hgroup3">a hgroup element</hgroup> can be nested inside another.</hgroup>';
|
| +var hgroup3 = document.getElementById('hgroup3');
|
| +shouldBe('hgroup3.parentNode.id', '"hgroup2"');
|
| +
|
| +debug('Residual style:');
|
| +testParent.innerHTML = '<b><hgroup id="hgroup4"><h2>This text should be bold.</h2></hgroup> <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("hgroup4")', '"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 <hgroup>.</span>]';
|
| +document.body.appendChild(editable);
|
| +editable.contentEditable = true;
|
| +var selection = window.getSelection();
|
| +selection.selectAllChildren(editable);
|
| +document.execCommand('FormatBlock', false, 'hgroup');
|
| +selection.removeAllRanges();
|
| +shouldBe('document.getElementById("span2").parentNode.nodeName', '"HGROUP"');
|
| +document.body.removeChild(editable);
|
| +
|
| +</script>
|
| </body>
|
| </html>
|
|
|