Title: [290870] trunk
Revision
290870
Author
za...@apple.com
Date
2022-03-05 13:24:10 -0800 (Sat, 05 Mar 2022)

Log Message

Remove non-standard display:block UA stylesheet rule for <layer>
https://bugs.webkit.org/show_bug.cgi?id=236730
<rdar://problem/89372670>

Reviewed by Antti Koivisto.

Source/WebCore:

This looks to be an old WebKit (khtml?) quirk.
See also https://bugs.chromium.org/p/chromium/issues/detail?id=1298197

* css/html.css:
(address, article, aside, div, footer, header, hgroup, main, nav, section):
(address, article, aside, div, footer, header, hgroup, layer, main, nav, section): Deleted.

LayoutTests:

* inspector/css/shadow-scoped-style-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (290869 => 290870)


--- trunk/LayoutTests/ChangeLog	2022-03-05 18:55:21 UTC (rev 290869)
+++ trunk/LayoutTests/ChangeLog	2022-03-05 21:24:10 UTC (rev 290870)
@@ -1,5 +1,15 @@
 2022-03-05  Alan Bujtas  <za...@apple.com>
 
+        Remove non-standard display:block UA stylesheet rule for <layer>
+        https://bugs.webkit.org/show_bug.cgi?id=236730
+        <rdar://problem/89372670>
+
+        Reviewed by Antti Koivisto.
+
+        * inspector/css/shadow-scoped-style-expected.txt:
+
+2022-03-05  Alan Bujtas  <za...@apple.com>
+
         [IFC][Integration] Do not bail out on IFC content with floats inside.
         https://bugs.webkit.org/show_bug.cgi?id=237494
 

Modified: trunk/LayoutTests/inspector/css/shadow-scoped-style-expected.txt (290869 => 290870)


--- trunk/LayoutTests/inspector/css/shadow-scoped-style-expected.txt	2022-03-05 18:55:21 UTC (rev 290869)
+++ trunk/LayoutTests/inspector/css/shadow-scoped-style-expected.txt	2022-03-05 21:24:10 UTC (rev 290870)
@@ -19,7 +19,7 @@
 :host {
     padding: 20px;
 }
-address, article, aside, div, footer, header, hgroup, layer, main, nav, section {
+address, article, aside, div, footer, header, hgroup, main, nav, section {
 }
 html {
 }
@@ -34,6 +34,6 @@
 div {
     color: blue;
 }
-address, article, aside, div, footer, header, hgroup, layer, main, nav, section {
+address, article, aside, div, footer, header, hgroup, main, nav, section {
 }
 

Modified: trunk/Source/WebCore/ChangeLog (290869 => 290870)


--- trunk/Source/WebCore/ChangeLog	2022-03-05 18:55:21 UTC (rev 290869)
+++ trunk/Source/WebCore/ChangeLog	2022-03-05 21:24:10 UTC (rev 290870)
@@ -1,3 +1,18 @@
+2022-03-05  Alan Bujtas  <za...@apple.com>
+
+        Remove non-standard display:block UA stylesheet rule for <layer>
+        https://bugs.webkit.org/show_bug.cgi?id=236730
+        <rdar://problem/89372670>
+
+        Reviewed by Antti Koivisto.
+
+        This looks to be an old WebKit (khtml?) quirk.
+        See also https://bugs.chromium.org/p/chromium/issues/detail?id=1298197
+
+        * css/html.css:
+        (address, article, aside, div, footer, header, hgroup, main, nav, section):
+        (address, article, aside, div, footer, header, hgroup, layer, main, nav, section): Deleted.
+
 2022-03-05  Mark Lam  <mark....@apple.com>
 
         Fix broken SuspendExceptionScope and remove redundant VM::DeferExceptionScope.

Modified: trunk/Source/WebCore/css/html.css (290869 => 290870)


--- trunk/Source/WebCore/css/html.css	2022-03-05 18:55:21 UTC (rev 290869)
+++ trunk/Source/WebCore/css/html.css	2022-03-05 21:24:10 UTC (rev 290870)
@@ -50,7 +50,7 @@
     margin-inline-end: 0;
 }
 
-address, article, aside, div, footer, header, hgroup, layer, main, nav, section {
+address, article, aside, div, footer, header, hgroup, main, nav, section {
     display: block;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to