| Index: third_party/WebKit/LayoutTests/dialog/inert-node-is-not-highlighted-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/dialog/inert-node-is-not-highlighted-expected.html b/third_party/WebKit/LayoutTests/dialog/inert-node-is-not-highlighted-expected.html
|
| deleted file mode 100644
|
| index f4d0a4193bc76b8a4318bf8aac5bbe6217c83bb4..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/dialog/inert-node-is-not-highlighted-expected.html
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<style>
|
| -body p, span {
|
| - -webkit-user-select: none;
|
| -}
|
| -
|
| -::backdrop {
|
| - display: none;
|
| -}
|
| -</style>
|
| -</head>
|
| -<body>
|
| -<p>Test that inert nodes are not painted as being selected. The test passes if
|
| -none of the text outside the dialog is highlighted when selected.</p>
|
| -
|
| -<p>Although not shown as selected, the inert nodes are in window.getSelection()
|
| -and copied to the clipboard, which is the same behavior as -webkit-user-select:
|
| -none (crbug.com/147490).</p>
|
| -
|
| -<br><span>This text shouldn't be highlighted as selected.</span>
|
| -
|
| -<dialog>
|
| - <div id="selectable">I'm selectable.</div>
|
| -</dialog>
|
| -
|
| -<script>
|
| -dialog = document.querySelector('dialog');
|
| -dialog.showModal();
|
| -selectable = document.querySelector('#selectable');
|
| -window.getSelection().selectAllChildren(selectable);
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|