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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLDialogElement/inert-label-focus.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/fast/dom/HTMLDialogElement/inert-label-focus.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLDialogElement/inert-label-focus.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLDialogElement/inert-label-focus.html
deleted file mode 100644
index f98cc72f0b3c98014788f0b7240a4a6f7c6091c8..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLDialogElement/inert-label-focus.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!DOCTYPE html>
-<html>
-<script src="../../../resources/js-test.js"></script>
-<label for="submit">Label for Submit</label>
-<dialog>
- <input id="text" type="text">
- <input id="submit" type="submit">
-</dialog>
-<script>
-function clickOn(element) {
- if (!window.eventSender)
- return;
-
- var absoluteTop = 0;
- var absoluteLeft = 0;
- for (var parentNode = element; parentNode; parentNode = parentNode.offsetParent) {
- absoluteLeft += parentNode.offsetLeft;
- absoluteTop += parentNode.offsetTop;
- }
-
- var x = absoluteLeft + element.offsetWidth / 2;
- var y = absoluteTop + element.offsetHeight / 2;
- eventSender.mouseMoveTo(x, y);
- eventSender.mouseDown();
- eventSender.mouseUp();
- eventSender.mouseMoveTo(0, 0);
-}
-
-description('Tests focusing of an inert label for a non-inert target. label.focus() should send focus ' +
- 'to the target, but clicking the label should be the same as clicking on the document body.');
-
-document.querySelector('dialog').showModal();
-document.querySelector('#text').focus();
-
-debug('Testing that calling focus() on label sends focus to its target.');
-label = document.querySelector('label');
-label.focus();
-shouldBe('document.activeElement', "document.querySelector('#submit')");
-
-debug('Testing that clicking on the label sends focus to document.body.');
-clickOn(label);
-shouldBe('document.activeElement', 'document.body');
-</script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698