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'); |