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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/inert/synthetic-click-inert.html

Issue 2088453002: Implement the inert attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix up some tests Created 4 years, 6 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/inert/synthetic-click-inert.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLDialogElement/synthetic-click-inert.html b/third_party/WebKit/LayoutTests/fast/dom/inert/synthetic-click-inert.html
similarity index 85%
copy from third_party/WebKit/LayoutTests/fast/dom/HTMLDialogElement/synthetic-click-inert.html
copy to third_party/WebKit/LayoutTests/fast/dom/inert/synthetic-click-inert.html
index ea67ee3e64717d590d936c579dafd3cc18e7efab..a2cae29cd29fa3358f25948482ac9db88589a1ff 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLDialogElement/synthetic-click-inert.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/inert/synthetic-click-inert.html
@@ -8,13 +8,10 @@ dialog {
</style>
<body>
<script src="../../../resources/js-test.js"></script>
-<button>Click me</button>
-<div id="div">Click me too</div>
-<dialog></dialog>
+<button inert>Click me</button>
+<div id="div" inert>Click me too</div>
<script>
description('Test that inert nodes still get programmatic click events');
-dialog = document.querySelector('dialog');
-dialog.showModal();
button = document.querySelector('button');
div = document.getElementById('div');

Powered by Google App Engine
This is Rietveld 408576698