| Index: LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapsulation/dom-tree-accessors-001.html
|
| diff --git a/LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapsulation/dom-tree-accessors-001.html b/LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapsulation/dom-tree-accessors-001.html
|
| index d380af7ab046a204761c50b41bfffcfb1423ff87..f9677324f6b625d4ede0d03c58ea510d0878b268 100644
|
| --- a/LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapsulation/dom-tree-accessors-001.html
|
| +++ b/LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapsulation/dom-tree-accessors-001.html
|
| @@ -127,8 +127,8 @@ test(function () {
|
|
|
| // Replace the content of <title> to distinguish elements in a host
|
| // document and a shadow tree.
|
| - doc.getElementsByTagName('title')[0].innerText = 'Title of host document';
|
| - shadowRoot.getElementsByTagName('title')[0].innerText =
|
| + doc.getElementsByTagName('title')[0].textContent = 'Title of host document';
|
| + shadowRoot.getElementsByTagName('title')[0].textContent =
|
| 'Title of shadow tree';
|
|
|
| assert_equals(doc.title, 'Title of host document');
|
|
|