Title: [279454] trunk/LayoutTests
Revision
279454
Author
n...@apple.com
Date
2021-07-01 00:37:38 -0700 (Thu, 01 Jul 2021)

Log Message

Merge LayoutTests/imported/blink/fast/dom/HTMLDialogElement and LayoutTests/imported/blink/dialog
https://bugs.webkit.org/show_bug.cgi?id=227566

Reviewed by Antti Koivisto.

They're only one directory in the Chromium codebase: https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/web_tests/html/dialog/;drc=d154f7938274ffda2e51690404522117533be62a
Keep only LayoutTests/imported/blink/dialog.

* TestExpectations:
* imported/blink/dialog/dont-share-style-to-top-layer-expected.html: Renamed from LayoutTests/imported/blink/fast/dom/HTMLDialogElement/dont-share-style-to-top-layer-expected.html.
* imported/blink/dialog/dont-share-style-to-top-layer.html: Renamed from LayoutTests/imported/blink/fast/dom/HTMLDialogElement/dont-share-style-to-top-layer.html.

Modified Paths

Added Paths

Removed Paths

  • trunk/LayoutTests/imported/blink/fast/dom/HTMLDialogElement/

Diff

Modified: trunk/LayoutTests/ChangeLog (279453 => 279454)


--- trunk/LayoutTests/ChangeLog	2021-07-01 07:07:49 UTC (rev 279453)
+++ trunk/LayoutTests/ChangeLog	2021-07-01 07:37:38 UTC (rev 279454)
@@ -1,3 +1,17 @@
+2021-07-01  Tim Nguyen  <n...@apple.com>
+
+        Merge LayoutTests/imported/blink/fast/dom/HTMLDialogElement and LayoutTests/imported/blink/dialog
+        https://bugs.webkit.org/show_bug.cgi?id=227566
+
+        Reviewed by Antti Koivisto.
+
+        They're only one directory in the Chromium codebase: https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/web_tests/html/dialog/;drc=d154f7938274ffda2e51690404522117533be62a
+        Keep only LayoutTests/imported/blink/dialog.
+
+        * TestExpectations:
+        * imported/blink/dialog/dont-share-style-to-top-layer-expected.html: Renamed from LayoutTests/imported/blink/fast/dom/HTMLDialogElement/dont-share-style-to-top-layer-expected.html.
+        * imported/blink/dialog/dont-share-style-to-top-layer.html: Renamed from LayoutTests/imported/blink/fast/dom/HTMLDialogElement/dont-share-style-to-top-layer.html.
+
 2021-06-30  Chris Dumez  <cdu...@apple.com>
 
         REGRESSION (r279427) [ Mac ] imported/w3c/web-platform-tests/html/semantics/scripting-1/the-script-element/css-module/integrity.html is failing

Modified: trunk/LayoutTests/TestExpectations (279453 => 279454)


--- trunk/LayoutTests/TestExpectations	2021-07-01 07:07:49 UTC (rev 279453)
+++ trunk/LayoutTests/TestExpectations	2021-07-01 07:37:38 UTC (rev 279454)
@@ -2277,7 +2277,7 @@
 # Modal <dialog> in top layer
 webkit.org/b/84796 imported/blink/dialog/modal-dialog-in-replaced-renderer.html [ ImageOnlyFailure ]
 webkit.org/b/84796 imported/blink/dialog/modal-dialog-in-table-column.html [ ImageOnlyFailure ]
-webkit.org/b/84796 imported/blink/fast/dom/HTMLDialogElement/dont-share-style-to-top-layer.html [ ImageOnlyFailure ]
+webkit.org/b/84796 imported/blink/dialog/dont-share-style-to-top-layer.html [ ImageOnlyFailure ]
 
 # Assertion failure in MessagePort::contextDestroyed, usually attributed to later tests
 webkit.org/b/94458 http/tests/security/MessagePort/event-listener-context.html [ Skip ]

Copied: trunk/LayoutTests/imported/blink/dialog/dont-share-style-to-top-layer-expected.html (from rev 279453, trunk/LayoutTests/imported/blink/fast/dom/HTMLDialogElement/dont-share-style-to-top-layer-expected.html) (0 => 279454)


--- trunk/LayoutTests/imported/blink/dialog/dont-share-style-to-top-layer-expected.html	                        (rev 0)
+++ trunk/LayoutTests/imported/blink/dialog/dont-share-style-to-top-layer-expected.html	2021-07-01 07:37:38 UTC (rev 279454)
@@ -0,0 +1,13 @@
+<!doctype html>
+<style>
+#non-modal {
+    position: static;
+}
+</style>
+<p>Test that a non-top layer element doesn't share style with a top layer
+element. The test passes if you see two boxes.</p>
+<dialog id="non-modal" open></dialog>
+<dialog id="modal"></dialog>
+<script>
+document.querySelector('#modal').showModal();
+</script>

Copied: trunk/LayoutTests/imported/blink/dialog/dont-share-style-to-top-layer.html (from rev 279453, trunk/LayoutTests/imported/blink/fast/dom/HTMLDialogElement/dont-share-style-to-top-layer.html) (0 => 279454)


--- trunk/LayoutTests/imported/blink/dialog/dont-share-style-to-top-layer.html	                        (rev 0)
+++ trunk/LayoutTests/imported/blink/dialog/dont-share-style-to-top-layer.html	2021-07-01 07:37:38 UTC (rev 279454)
@@ -0,0 +1,13 @@
+<!doctype html>
+<style>
+dialog {
+  position: static;
+}
+</style>
+<p>Test that a non-top layer element doesn't share style with a top layer
+element. The test passes if you see two boxes.</p>
+<dialog open></dialog>
+<dialog id="modal"></dialog>
+<script>
+document.querySelector('#modal').showModal();
+</script>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to