Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Unified Diff: third_party/WebKit/LayoutTests/dialog/inert-node-is-not-highlighted.html

Issue 2671603003: Move DIALOG element tests to html/dialog/. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/dialog/inert-node-is-not-highlighted.html
diff --git a/third_party/WebKit/LayoutTests/dialog/inert-node-is-not-highlighted.html b/third_party/WebKit/LayoutTests/dialog/inert-node-is-not-highlighted.html
deleted file mode 100644
index d4aabf083fdf633a15b26a18f5dc76b070ecff52..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/dialog/inert-node-is-not-highlighted.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-::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> <!-- Needed to the trigger the bug. -->
-This text shouldn't be highlighted as selected.
-
-<dialog>
- <div id="selectable">I'm selectable.</div>
-</dialog>
-
-<script>
-dialog = document.querySelector('dialog');
-dialog.showModal();
-document.execCommand('SelectAll');
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698