[webkit-changes] [292523] trunk

2022-04-06 Thread ntim
Title: [292523] trunk








Revision 292523
Author n...@apple.com
Date 2022-04-06 21:29:06 -0700 (Wed, 06 Apr 2022)


Log Message
[:has() pseudo-class] Support invalidation for :placeholder-shown
https://bugs.webkit.org/show_bug.cgi?id=238894

Reviewed by Simon Fraser.

LayoutTests/imported/w3c:

* web-platform-tests/css/selectors/invalidation/input-pseudo-classes-in-has-expected.txt:

Source/WebCore:

Test: imported/w3c/web-platform-tests/css/selectors/invalidation/input-pseudo-classes-in-has.html

Use same pattern as other input pseudo classes.

* html/HTMLTextFormControlElement.cpp:
(WebCore::HTMLTextFormControlElement::updatePlaceholderVisibility):

Modified Paths

trunk/LayoutTests/imported/w3c/ChangeLog
trunk/LayoutTests/imported/w3c/web-platform-tests/css/selectors/invalidation/input-pseudo-classes-in-has-expected.txt
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/html/HTMLTextFormControlElement.cpp




Diff

Modified: trunk/LayoutTests/imported/w3c/ChangeLog (292522 => 292523)

--- trunk/LayoutTests/imported/w3c/ChangeLog	2022-04-07 02:44:11 UTC (rev 292522)
+++ trunk/LayoutTests/imported/w3c/ChangeLog	2022-04-07 04:29:06 UTC (rev 292523)
@@ -1,3 +1,12 @@
+2022-04-06  Tim Nguyen  
+
+[:has() pseudo-class] Support invalidation for :placeholder-shown
+https://bugs.webkit.org/show_bug.cgi?id=238894
+
+Reviewed by Simon Fraser.
+
+* web-platform-tests/css/selectors/invalidation/input-pseudo-classes-in-has-expected.txt:
+
 2022-04-06  Oriol Brufau  
 
 [css] Turn -webkit-border-image into a shorthand


Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/css/selectors/invalidation/input-pseudo-classes-in-has-expected.txt (292522 => 292523)

--- trunk/LayoutTests/imported/w3c/web-platform-tests/css/selectors/invalidation/input-pseudo-classes-in-has-expected.txt	2022-04-07 02:44:11 UTC (rev 292522)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/css/selectors/invalidation/input-pseudo-classes-in-has-expected.txt	2022-04-07 04:29:06 UTC (rev 292523)
@@ -7,5 +7,5 @@
 FAIL :default invalidation with input[type=radio] assert_equals: ancestor should be lightblue expected "rgb(173, 216, 230)" but got "rgb(0, 0, 0)"
 PASS :required invalidation
 FAIL :out-of-range invalidation assert_equals: ancestor should be darkgreen expected "rgb(0, 100, 0)" but got "rgb(0, 0, 0)"
-FAIL :placeholder-shown invalidation assert_equals: ancestor should be navy expected "rgb(0, 0, 128)" but got "rgb(0, 0, 0)"
+PASS :placeholder-shown invalidation
 


Modified: trunk/Source/WebCore/ChangeLog (292522 => 292523)

--- trunk/Source/WebCore/ChangeLog	2022-04-07 02:44:11 UTC (rev 292522)
+++ trunk/Source/WebCore/ChangeLog	2022-04-07 04:29:06 UTC (rev 292523)
@@ -1,3 +1,17 @@
+2022-04-06  Tim Nguyen  
+
+[:has() pseudo-class] Support invalidation for :placeholder-shown
+https://bugs.webkit.org/show_bug.cgi?id=238894
+
+Reviewed by Simon Fraser.
+
+Test: imported/w3c/web-platform-tests/css/selectors/invalidation/input-pseudo-classes-in-has.html
+
+Use same pattern as other input pseudo classes.
+
+* html/HTMLTextFormControlElement.cpp:
+(WebCore::HTMLTextFormControlElement::updatePlaceholderVisibility):
+
 2022-04-06  Myles C. Maxfield  
 
 NBSP characters drawn in fonts that don't support the space character turn into boxes


Modified: trunk/Source/WebCore/html/HTMLTextFormControlElement.cpp (292522 => 292523)

--- trunk/Source/WebCore/html/HTMLTextFormControlElement.cpp	2022-04-07 02:44:11 UTC (rev 292522)
+++ trunk/Source/WebCore/html/HTMLTextFormControlElement.cpp	2022-04-07 04:29:06 UTC (rev 292523)
@@ -49,6 +49,7 @@
 #include "Logging.h"
 #include "NodeTraversal.h"
 #include "Page.h"
+#include "PseudoClassChangeInvalidation.h"
 #include "RenderLineBreak.h"
 #include "RenderTextControlSingleLine.h"
 #include "RenderTheme.h"
@@ -183,13 +184,15 @@
 
 void HTMLTextFormControlElement::updatePlaceholderVisibility()
 {
-bool placeHolderWasVisible = m_isPlaceholderVisible;
-m_isPlaceholderVisible = placeholderShouldBeVisible();
-
-if (placeHolderWasVisible == m_isPlaceholderVisible)
+bool newIsPlaceholderVisible = placeholderShouldBeVisible();
+if (m_isPlaceholderVisible == newIsPlaceholderVisible)
 return;
 
-invalidateStyleForSubtree();
+Style::PseudoClassChangeInvalidation styleInvalidation(*this, CSSSelector::PseudoClassPlaceholderShown, newIsPlaceholderVisible);
+m_isPlaceholderVisible = newIsPlaceholderVisible;
+
+if (RefPtr placeholder = placeholderElement())
+placeholder->invalidateStyle();
 }
 
 void HTMLTextFormControlElement::setCanShowPlaceholder(bool canShowPlaceholder)






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [292522] trunk

2022-04-06 Thread mmaxfield
Title: [292522] trunk








Revision 292522
Author mmaxfi...@apple.com
Date 2022-04-06 19:44:11 -0700 (Wed, 06 Apr 2022)


Log Message
NBSP characters drawn in fonts that don't support the space character turn into boxes
https://bugs.webkit.org/show_bug.cgi?id=238836


Reviewed by Alan Bujtas.

Source/WebCore:

We have some historical code in WebKit where we swap out the non-breaking space glyph
for the space glyphs when rendering. This is not what the other browsers do; they will
faithfully render the non-breaking space glyph. This patch aligns with the other
browsers.

This patch also fixes a similar problem with tab characters. Other browsers never
render any visible tab glyphs, even if the font has a visible glyph for the tab
character. This patch implements this.

This patch also only clobbers the glyphs used for carriageReturn and newlineCharacter
if the replacement glyph exists.

Test: fast/text/nbsp-no-space.html

* platform/graphics/WidthIterator.cpp:
(WebCore::WidthIterator::applyCSSVisibilityRules):

LayoutTests:

* fast/text/nbsp-no-space-expected.html: Added.
* fast/text/nbsp-no-space.html: Added.
* fast/text/resources/Ahem-nbsp-no-space.ttf: Added. Supports NBSP but not space.
* fast/text/resources/Ahem-visible-tab-and-space.ttf: Added. Has visible glyphs for tab and space.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/platform/graphics/GlyphBuffer.h
trunk/Source/WebCore/platform/graphics/WidthIterator.cpp


Added Paths

trunk/LayoutTests/fast/text/nbsp-no-space-expected.html
trunk/LayoutTests/fast/text/nbsp-no-space.html
trunk/LayoutTests/fast/text/resources/Ahem-nbsp-no-space.ttf
trunk/LayoutTests/fast/text/resources/Ahem-visible-tab-and-space.ttf




Diff

Modified: trunk/LayoutTests/ChangeLog (292521 => 292522)

--- trunk/LayoutTests/ChangeLog	2022-04-07 02:18:01 UTC (rev 292521)
+++ trunk/LayoutTests/ChangeLog	2022-04-07 02:44:11 UTC (rev 292522)
@@ -1,3 +1,16 @@
+2022-04-06  Myles C. Maxfield  
+
+NBSP characters drawn in fonts that don't support the space character turn into boxes
+https://bugs.webkit.org/show_bug.cgi?id=238836
+
+
+Reviewed by Alan Bujtas.
+
+* fast/text/nbsp-no-space-expected.html: Added.
+* fast/text/nbsp-no-space.html: Added.
+* fast/text/resources/Ahem-nbsp-no-space.ttf: Added. Supports NBSP but not space.
+* fast/text/resources/Ahem-visible-tab-and-space.ttf: Added. Has visible glyphs for tab and space.
+
 2022-04-06  Andres Gonzalez  
 
 [ Mac ] accessibility/mac/expanded-notification.html is a flaky text failure


Added: trunk/LayoutTests/fast/text/nbsp-no-space-expected.html (0 => 292522)

--- trunk/LayoutTests/fast/text/nbsp-no-space-expected.html	(rev 0)
+++ trunk/LayoutTests/fast/text/nbsp-no-space-expected.html	2022-04-07 02:44:11 UTC (rev 292522)
@@ -0,0 +1,14 @@
+
+
+
+
+@font-face {
+font-family: "WebFont";
+src: url("resources/Ahem-nbsp-no-space.ttf") format("truetype");
+}
+
+
+
+This test makes sure that the nbsp glyph is used in a font if the space glyph is unavailable. The test passes if this text you're reading right now is the only text on the page.
+
+


Added: trunk/LayoutTests/fast/text/nbsp-no-space.html (0 => 292522)

--- trunk/LayoutTests/fast/text/nbsp-no-space.html	(rev 0)
+++ trunk/LayoutTests/fast/text/nbsp-no-space.html	2022-04-07 02:44:11 UTC (rev 292522)
@@ -0,0 +1,20 @@
+
+
+
+
+@font-face {
+font-family: "WebFont";
+src: url("resources/Ahem-nbsp-no-space.ttf") format("truetype");
+}
+@font-face {
+font-family: "WebFont2";
+src: url("resources/Ahem-visible-tab-and-space.ttf") format("truetype");
+}
+
+
+
+This test makes sure that the nbsp glyph is used in a font if the space glyph is unavailable. The test passes if this text you're reading right now is the only text on the page.
+ 
+	
+
+


Added: trunk/LayoutTests/fast/text/resources/Ahem-nbsp-no-space.ttf (0 => 292522)

--- trunk/LayoutTests/fast/text/resources/Ahem-nbsp-no-space.ttf	(rev 0)
+++ trunk/LayoutTests/fast/text/resources/Ahem-nbsp-no-space.ttf	2022-04-07 02:44:11 UTC (rev 292522)
@@ -0,0 +1,44 @@
+\x800OS/2sf\xF8\xBC`cmap\x9Fu\xF0:gasp	0glyf0*	\xFD@\xA8head\xDBP͵ \xE86hhea
+7! $hmtx+!DXloca\xBEԸ7%\x9C.maxp	'\xCC nameM\xDAc'\xEC1\xAEpostc\xA1[#Y\x9C\xD6\x90\xBC\x8A\x8F\xBC\x8A\xC52\x80\xAF HW3C @ \xFE\xFF \xFF8 \xC8\xFF\xFC\xFF\xFF   << &~\xA0\xA1\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF\xC0\xC1\xC2\xC3\xC5
[webkit-changes] [292521] trunk/LayoutTests

2022-04-06 Thread matteo_flores
Title: [292521] trunk/LayoutTests








Revision 292521
Author matteo_flo...@apple.com
Date 2022-04-06 19:18:01 -0700 (Wed, 06 Apr 2022)


Log Message
REBASLINE: [ Monterey ] fast/text/khmer-lao-font.html is a constant text failure
https://bugs.webkit.org/show_bug.cgi?id=238917

Unreviewed test rebasline.

* platform/mac/fast/text/khmer-lao-font-expected.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/mac/fast/text/khmer-lao-font-expected.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (292520 => 292521)

--- trunk/LayoutTests/ChangeLog	2022-04-07 01:21:13 UTC (rev 292520)
+++ trunk/LayoutTests/ChangeLog	2022-04-07 02:18:01 UTC (rev 292521)
@@ -30,6 +30,15 @@
 
 2022-04-06  Matteo Flores  
 
+REBASLINE: [ Monterey ] fast/text/khmer-lao-font.html is a constant text failure
+https://bugs.webkit.org/show_bug.cgi?id=238917
+
+Unreviewed test rebasline.
+
+* platform/mac/fast/text/khmer-lao-font-expected.txt:
+
+2022-04-06  Matteo Flores  
+
 [ Mac , iOS Debug ] imported/w3c/web-platform-tests/html/cross-origin-opener-policy/resource-popup.https.html is a flaky failure.
 https://bugs.webkit.org/show_bug.cgi?id=228127
 


Modified: trunk/LayoutTests/platform/mac/fast/text/khmer-lao-font-expected.txt (292520 => 292521)

--- trunk/LayoutTests/platform/mac/fast/text/khmer-lao-font-expected.txt	2022-04-07 01:21:13 UTC (rev 292520)
+++ trunk/LayoutTests/platform/mac/fast/text/khmer-lao-font-expected.txt	2022-04-07 02:18:01 UTC (rev 292521)
@@ -21,17 +21,16 @@
 RenderText {#text} at (0,18) size 30x18
   text run at (0,18) width 30: "Lao:"
   RenderBlock {P} at (0,281) size 784x220
-RenderText {#text} at (0,0) size 783x216
+RenderText {#text} at (0,0) size 781x216
   text run at (0,0) width 778: "\x{E84}\x{EBB}\x{EC9}\x{E99}\x{EAB}\x{EB2} \x{EAE}\x{EB9}\x{E9A}\x{E9E}\x{EB2}\x{E9A} \x{EC1}\x{E9C}\x{E99}\x{E97}\x{EB5}\x{EC8} \x{EC1}\x{E9B}\x{E9E}\x{EB2}\x{EAA}\x{EB2} \x{EA1}\x{EB7}\x{E96}\x{EB7} \x{E9A}\x{EA5}\x{EB1}\x{EAD}\x{E81}\x{EC0}\x{E81}\x{EB5} \x{EC0}\x{E9E}\x{EB5}\x{EC8}\x{EA1}\x{EC0}\x{E95}\x{EB5}\x{EA1}\x{E88}\x{EB2}\x{E81} \x{EC1}\x{E9B}\x{EDC}\x{EC9}\x{EB2}\x{E99}\x{EB5}\x{EC9} \x{EAE}\x{EB9}\x{E9A}\x{E9E}\x{EB2}\x{E9A}\x{EAA}\x{EB3}\x{EA5}\x{EB1}\x{E9A} \x{EC1}\x{E9B}\x{EDC}\x{EC9}\x{EB2}\x{E99}\x{EB5}\x{EC9} \x{EAB}\x{EBC}\x{EB1}\x{E87}\x{E88}\x{EB2}\x{E81}\x{E97}\x{EB5}\x{EC8}\x{EC0}\x{E9B}\x{EB5}\x{E94}\x{EC0}\x{EA7}\x{EB1}\x{E9A}\x{EC4}\x{E8A} \x{E9A}\x{EAA}\x{EB2}\x{EA1}\x{E9B}\x{EB5} \x{E95}\x{EB1}\x{EC9}\x{E87}\x{EC1}\x{E95}\x{EC8}\x{E9B}\x{EB5} \x{E88}\x{EBB}\x{E99}"
   text run at (0,22) width 754: "\x{E95}\x{EAD}\x{E99}\x{E99}\x{EB5}\x{EC9}\x{E9B}\x{EB5} \x{EC1}\x{EA5}\x{EC9}\x{EA7} \x{E81}\x{ECD}\x{EA1}\x{EB5}\x{EAB}\x{EBC}\x{EB2}\x{E8D}\x{EAA}\x{EB4}\x{EC8}\x{E87}\x{EAB}\x{EBC}\x{EB2}\x{E8D}\x{EA2}\x{EC8}\x{EB2}\x{E87}\x{EC0}\x{E81}\x{EB5}\x{E94}\x{E82}\x{EB6}\x{EC9}\x{E99} \x{EAB}\x{EBC}\x{EB2}\x{E8D}\x{E84}\x{EBB}\x{E99}\x{E81}\x{ECD}\x{EC4}\x{E94}\x{EC9}\x{EAE}\x{EBD}\x{E99}\x{EAE}\x{EB9}\x{EC9}\x{EA7}\x{EB4}\x{E97}\x{EB5}\x{E81}\x{EB2}\x{E99}\x{EC3}\x{E8A}\x{EC9} \x{EAB}\x{EBC}\x{EB2}\x{E8D}\x{E84}\x{EBB}\x{E99}\x{E81}\x{ECD}\x{E87}\x{EBB}\x{E87}\x{E81}\x{EB1}\x{E9A}\x{E81}\x{EB2}\x{E99}\x{EC3}\x{E8A}\x{EC9} \x{EC0}\x{E82}\x{EBB}\x{EC9}\x{EB2}\x{EC4}\x{E9B}\x{EAD}\x{EB5}\x{E81} (\x{EAD}\x{EC9}\x{EB2}\x{EA7}!) \x{EC1}\x{E95}\x{EC8}\x{EA2}\x{EC8}\x{EB2}\x{E87}\x{EC3}\x{E94}\x{E81}\x{ECD}\x{E95}\x{EB2}\x{EA1}"
-  text run at (0,44) width 783: "\x{E82}\x{EC9}\x{EB2}\x{E9E}\x{EB0}\x{EC0}\x{E88}\x{EBB}\x{EC9}\x{EB2} \x{EC3}\x{E99}\x{E99}\x{EB2}\x{EA1}\x{E82}\x{EAD}\x{E87}\x{E9C}\x{EB9}\x{EC8}\x{EAA}\x{EC9}\x{EB2}\x{E87}\x{EC0}\x{EA7}\x{EB1}\x{E9A}\x{EC4}\x{E8A}\x{E99}\x{EB5}\x{EC9} \x{E81}\x{ECD}\x{E95}\x{EC9}\x{EAD}\x{E87}\x{E82}\x{ECD}\x{E82}\x{EAD}\x{E9A}\x{EC3}\x{E88}\x{E97}\x{EB8}\x{E81}\x{EC6} \x{E97}\x{EC8}\x{EB2}\x{E99}\x{E97}\x{EB5}\x{EC8}\x{EA1}\x{EB5}\x{EAA}\x{EC8}\x{EA7}\x{E99}\x{EAE}\x{EC8}\x{EA7}\x{EA1} \x{E97}\x{EB1}\x{E87}\x{E81}\x{EB2}\x{E99}\x{E96}\x{EB2}\x{EA1} \x{EC1}\x{EA5}\x{EB0}\x{E95}\x{EAD}\x{E9A}\x{E97}\x{EB5}\x{EC8}\x{EC0}\x{E81}\x{EB5}\x{E94}\x{E82}\x{EB6}\x{EC9}\x{E99}\x{EC3}\x{E99}\x{E9A}\x{EBB}\x{E94}\x{E84}\x{EA7}\x{EB2}\x{EA1} \x{EC1}\x{EA5}\x{EB0}\x{E81}\x{EB0}\x{E97}\x{EB9}\x{EC9}\x{E95}\x{EC8}\x{EB2}\x{E87}"
-  text run at (0,66) width 318: "\x{EC6} \x{EC3}\x{E99}\x{EC0}\x{EA7}\x{EB1}\x{E9A}\x{E9A}\x{EAD}\x{E94} \x{EC0}\x{E8A}\x{EB4}\x{EC8}\x{E87}\x{E81}\x{ECD}\x{E96}\x{EB7}\x{EA7}\x{EC8}\x{EB2}\x{EC0}\x{E9B}\x{EB1}\x{E99}\x{E81}\x{EB2}\x{E99}\x{EC1}\x{EA5}\x{E81}\x{E9B}\x{EC8}\x{EBD}\x{E99}\x{E84}\x{EA7}\x{EB2}\x{EA1}\x{EAE}\x{EB9}\x{EC9}\x{E81}\x{EB1}\x{E99}. "
-  text run at (317,66) width 448: "\x{EAA}\x{EB3}\x{EA5}\x{EB1}\x{E9A}\x{EC3}\x{E99}\x{E9B}\x{EB5} 2011 \x{E99}\x{EB5}\x{EC9} \x{E82}\x{EC9}\x{EB2}\x{E9E}\x{EB0}\x{EC0}\x{E88}\x{EBB}\x{EC9}\x{EB2}\x{EA1}\x{EB5}\x{E84}\x{EA

[webkit-changes] [292520] trunk

2022-04-06 Thread andresg_22
Title: [292520] trunk








Revision 292520
Author andresg...@apple.com
Date 2022-04-06 18:21:13 -0700 (Wed, 06 Apr 2022)


Log Message
[ Mac ] accessibility/mac/expanded-notification.html is a flaky text failure
https://bugs.webkit.org/show_bug.cgi?id=238830
rdar://91313419

Reviewed by Chris Fleizach.

Source/WebCore:

Test: accessibility/mac/expanded-notification.html

This patch fixes the flackiness of this test and also fixes this test
in isolated tree mode that was timing out.
Instead of AXIsolatedTree::updateChildren on the AXExpandedChanged
notification, we now update the ISExpanded property in the target object.
If new children are added or removed from the tree as the result of an
element's expanded state change, those tree mutations should generate
separate AXChildrenChanged notifications.

* accessibility/AXObjectCache.cpp:
(WebCore::AXObjectCache::updateIsolatedTree):
* accessibility/isolatedtree/AXIsolatedTree.cpp:
(WebCore::AXIsolatedTree::updateNodeProperty):

LayoutTests:

Fixes the flakiness by checking the number of notifications received in
the same async block where the changes are occuring. This now passes
with no flakiness in both isolated tree mode on and off.

* accessibility/mac/expanded-notification-expected.txt:
* accessibility/mac/expanded-notification.html:
* platform/mac/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/accessibility/mac/expanded-notification-expected.txt
trunk/LayoutTests/accessibility/mac/expanded-notification.html
trunk/LayoutTests/platform/mac/TestExpectations
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/accessibility/AXObjectCache.cpp
trunk/Source/WebCore/accessibility/isolatedtree/AXIsolatedTree.cpp




Diff

Modified: trunk/LayoutTests/ChangeLog (292519 => 292520)

--- trunk/LayoutTests/ChangeLog	2022-04-07 01:08:53 UTC (rev 292519)
+++ trunk/LayoutTests/ChangeLog	2022-04-07 01:21:13 UTC (rev 292520)
@@ -1,3 +1,19 @@
+2022-04-06  Andres Gonzalez  
+
+[ Mac ] accessibility/mac/expanded-notification.html is a flaky text failure
+https://bugs.webkit.org/show_bug.cgi?id=238830
+rdar://91313419
+
+Reviewed by Chris Fleizach.
+
+Fixes the flakiness by checking the number of notifications received in
+the same async block where the changes are occuring. This now passes
+with no flakiness in both isolated tree mode on and off.
+
+* accessibility/mac/expanded-notification-expected.txt:
+* accessibility/mac/expanded-notification.html:
+* platform/mac/TestExpectations:
+
 2022-04-06  J Pascoe  
 
 Fix expected, actual links for variant-based imported wpt tests


Modified: trunk/LayoutTests/accessibility/mac/expanded-notification-expected.txt (292519 => 292520)

--- trunk/LayoutTests/accessibility/mac/expanded-notification-expected.txt	2022-04-07 01:08:53 UTC (rev 292519)
+++ trunk/LayoutTests/accessibility/mac/expanded-notification-expected.txt	2022-04-07 01:21:13 UTC (rev 292520)
@@ -1,14 +1,10 @@
-
 This tests that aria-expanded changes will send notifications.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
 Initial expanded status: false
 Received notification: AXExpandedChanged
 Expanded status: true
 Received notification: AXExpandedChanged
 Expanded status: false
+
 PASS successfullyParsed is true
 
 TEST COMPLETE


Modified: trunk/LayoutTests/accessibility/mac/expanded-notification.html (292519 => 292520)

--- trunk/LayoutTests/accessibility/mac/expanded-notification.html	2022-04-07 01:08:53 UTC (rev 292519)
+++ trunk/LayoutTests/accessibility/mac/expanded-notification.html	2022-04-07 01:21:13 UTC (rev 292520)
@@ -1,7 +1,7 @@
 
 
 
-+