| Index: third_party/WebKit/LayoutTests/editing/selection/script-tests/DOMSelection-crossing-document.js
|
| diff --git a/third_party/WebKit/LayoutTests/editing/selection/script-tests/DOMSelection-crossing-document.js b/third_party/WebKit/LayoutTests/editing/selection/script-tests/DOMSelection-crossing-document.js
|
| index e06a9c1236f6cfb1e5c1ab78daef55253580dfd8..67a57258de078c58365836d26981b3bb6a6911f7 100644
|
| --- a/third_party/WebKit/LayoutTests/editing/selection/script-tests/DOMSelection-crossing-document.js
|
| +++ b/third_party/WebKit/LayoutTests/editing/selection/script-tests/DOMSelection-crossing-document.js
|
| @@ -36,7 +36,8 @@ shouldBeNull("foreignSel.anchorNode");
|
| shouldBeNull("mainSel.anchorNode");
|
|
|
| clear();
|
| -shouldThrow("mainSel.extend(foreignElement, 1)");
|
| +// An element in a different root should not throw.
|
| +mainSel.extend(foreignElement, 1);
|
| shouldBeNull("foreignSel.anchorNode");
|
| shouldBeNull("mainSel.anchorNode");
|
|
|
|
|