| Index: third_party/WebKit/LayoutTests/fast/dom/shadow/no-renderers-for-light-children.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/no-renderers-for-light-children.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/no-renderers-for-light-children.html
|
| index 8169bfb56840b78c3227f0b5b7f983c58d560c0c..3d88546845734f81782756099b15f40ba0629b8a 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/shadow/no-renderers-for-light-children.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/no-renderers-for-light-children.html
|
| @@ -7,14 +7,14 @@ if (window.testRunner)
|
|
|
| window.addEventListener('load', function()
|
| {
|
| - document.getElementsByTagName('keygen')[0].appendChild(document.createTextNode('FAIL'));
|
| + document.getElementsByTagName('input')[0].appendChild(document.createTextNode('FAIL'));
|
| }, false);
|
|
|
| </script>
|
| </head>
|
| <body>
|
| -Children of an element are never rendered is it has a shadow DOM subtree.<br>
|
| +Children of an element are never rendered if it has a shadow DOM subtree.<br>
|
| Should not see the word FAIL below.<br>
|
| -<keygen></keygen>
|
| +<input type="datetime" />
|
| </body>
|
| -</html>
|
| +</html>
|
|
|