Title: [286319] trunk/LayoutTests
Revision
286319
Author
[email protected]
Date
2021-11-30 12:57:34 -0800 (Tue, 30 Nov 2021)

Log Message

Unreviewed follow-up to r286316 to fix "undeflows" typo.

* fast/forms/date/ValidityState-rangeUnderflow-date-expected.txt:
* fast/forms/date/ValidityState-rangeUnderflow-date.html:
* fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal-expected.txt:
* fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal.html:
* fast/forms/month/ValidityState-rangeUnderflow-month-expected.txt:
* fast/forms/month/ValidityState-rangeUnderflow-month.html:
* fast/forms/number/number-validity-rangeunderflow-expected.txt:
* fast/forms/number/number-validity-rangeunderflow.html:
* fast/forms/time/time-validity-rangeunderflow-expected.txt:
* fast/forms/time/time-validity-rangeunderflow.html:
* fast/forms/week/ValidityState-rangeUnderflow-week-expected.txt:
* fast/forms/week/ValidityState-rangeUnderflow-week.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (286318 => 286319)


--- trunk/LayoutTests/ChangeLog	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/ChangeLog	2021-11-30 20:57:34 UTC (rev 286319)
@@ -1,5 +1,22 @@
 2021-11-30  Chris Dumez  <[email protected]>
 
+        Unreviewed follow-up to r286316 to fix "undeflows" typo.
+
+        * fast/forms/date/ValidityState-rangeUnderflow-date-expected.txt:
+        * fast/forms/date/ValidityState-rangeUnderflow-date.html:
+        * fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal-expected.txt:
+        * fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal.html:
+        * fast/forms/month/ValidityState-rangeUnderflow-month-expected.txt:
+        * fast/forms/month/ValidityState-rangeUnderflow-month.html:
+        * fast/forms/number/number-validity-rangeunderflow-expected.txt:
+        * fast/forms/number/number-validity-rangeunderflow.html:
+        * fast/forms/time/time-validity-rangeunderflow-expected.txt:
+        * fast/forms/time/time-validity-rangeunderflow.html:
+        * fast/forms/week/ValidityState-rangeUnderflow-week-expected.txt:
+        * fast/forms/week/ValidityState-rangeUnderflow-week.html:
+
+2021-11-30  Chris Dumez  <[email protected]>
+
         Several WPT tests under html/semantics/forms/constraints are failing due to extraneous willValidate() checks
         https://bugs.webkit.org/show_bug.cgi?id=233604
 

Modified: trunk/LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date-expected.txt (286318 => 286319)


--- trunk/LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date-expected.txt	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date-expected.txt	2021-11-30 20:57:34 UTC (rev 286319)
@@ -11,10 +11,10 @@
 PASS The value "2010-01-27" doesn't underflow the minimum value "2010-01-26".
 PASS The value "2010-01-27" doesn't underflow the minimum value "2009-01-28".
 PASS The value "" sanitized from "foo" doesn't underflow the minimum value "2011-01-26".
-PASS The value "2010-01-27" undeflows the minimum value "2010-01-28".
-PASS The value "9999-01-01" undeflows the minimum value "10000-12-31".
-PASS The value "2010-01-27" undeflows the minimum value "2010-02-01".
-PASS The value "9999-01-01" undeflows the minimum value "10000-12-31" when disabled.
+PASS The value "2010-01-27" underflows the minimum value "2010-01-28".
+PASS The value "9999-01-01" underflows the minimum value "10000-12-31".
+PASS The value "2010-01-27" underflows the minimum value "2010-02-01".
+PASS The value "9999-01-01" underflows the minimum value "10000-12-31" when disabled.
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date.html (286318 => 286319)


--- trunk/LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date.html	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date.html	2021-11-30 20:57:34 UTC (rev 286319)
@@ -18,7 +18,7 @@
     input.disabled = !!disabled;
     var underflow = input.validity.rangeUnderflow;
     var resultText = 'The value "' + input.value + '" ' +
-        (underflow ? 'undeflows' : 'doesn\'t underflow') +
+        (underflow ? 'underflows' : 'doesn\'t underflow') +
         ' the minimum value "' + input.min + '"' + (disabled ? ' when disabled.' : '.');
     if (underflow)
         testPassed(resultText);

Modified: trunk/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal-expected.txt (286318 => 286319)


--- trunk/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal-expected.txt	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal-expected.txt	2021-11-30 20:57:34 UTC (rev 286319)
@@ -11,10 +11,10 @@
 PASS The value "2010-01-27T12:34" doesn't underflow the minimum value "2010-01-26T00:00".
 PASS The value "2010-01-27T12:34" doesn't underflow the minimum value "2009-01-28T00:00".
 PASS The value "" sanitized from "foo" doesn't underflow the minimum value "2011-01-26T00:00".
-PASS The value "2010-01-27T12:34" undeflows the minimum value "2010-01-27T13:00".
-PASS The value "9999-01-01T12:00" undeflows the minimum value "10000-12-31T12:00".
-PASS The value "2010-01-27T12:00" undeflows the minimum value "2010-02-01T12:00".
-PASS The value "9999-01-01T12:00" undeflows the minimum value "10000-12-31T12:00" when disabled.
+PASS The value "2010-01-27T12:34" underflows the minimum value "2010-01-27T13:00".
+PASS The value "9999-01-01T12:00" underflows the minimum value "10000-12-31T12:00".
+PASS The value "2010-01-27T12:00" underflows the minimum value "2010-02-01T12:00".
+PASS The value "9999-01-01T12:00" underflows the minimum value "10000-12-31T12:00" when disabled.
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal.html (286318 => 286319)


--- trunk/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal.html	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal.html	2021-11-30 20:57:34 UTC (rev 286319)
@@ -18,7 +18,7 @@
     input.disabled = !!disabled;
     var underflow = input.validity.rangeUnderflow;
     var resultText = 'The value "' + input.value + '" ' +
-        (underflow ? 'undeflows' : 'doesn\'t underflow') +
+        (underflow ? 'underflows' : 'doesn\'t underflow') +
         ' the minimum value "' + input.min + '"' + (disabled ? ' when disabled.' : '.');
     if (underflow)
         testPassed(resultText);

Modified: trunk/LayoutTests/fast/forms/month/ValidityState-rangeUnderflow-month-expected.txt (286318 => 286319)


--- trunk/LayoutTests/fast/forms/month/ValidityState-rangeUnderflow-month-expected.txt	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/fast/forms/month/ValidityState-rangeUnderflow-month-expected.txt	2021-11-30 20:57:34 UTC (rev 286319)
@@ -11,10 +11,10 @@
 PASS The value "2010-01" doesn't underflow the minimum value "2009-12".
 PASS The value "2010-01" doesn't underflow the minimum value "2009-01".
 PASS The value "" sanitized from "foo" doesn't underflow the minimum value "2011-01".
-PASS The value "2010-01" undeflows the minimum value "2010-02".
-PASS The value "9999-01" undeflows the minimum value "10000-12".
-PASS The value "2010-01" undeflows the minimum value "2010-02".
-PASS The value "9999-01" undeflows the minimum value "10000-12" when disabled.
+PASS The value "2010-01" underflows the minimum value "2010-02".
+PASS The value "9999-01" underflows the minimum value "10000-12".
+PASS The value "2010-01" underflows the minimum value "2010-02".
+PASS The value "9999-01" underflows the minimum value "10000-12" when disabled.
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/fast/forms/month/ValidityState-rangeUnderflow-month.html (286318 => 286319)


--- trunk/LayoutTests/fast/forms/month/ValidityState-rangeUnderflow-month.html	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/fast/forms/month/ValidityState-rangeUnderflow-month.html	2021-11-30 20:57:34 UTC (rev 286319)
@@ -18,7 +18,7 @@
     input.disabled = !!disabled;
     var underflow = input.validity.rangeUnderflow;
     var resultText = 'The value "' + input.value + '" ' +
-        (underflow ? 'undeflows' : 'doesn\'t underflow') +
+        (underflow ? 'underflows' : 'doesn\'t underflow') +
         ' the minimum value "' + input.min + '"' + (disabled ? ' when disabled.' : '.');
     if (underflow)
         testPassed(resultText);

Modified: trunk/LayoutTests/fast/forms/number/number-validity-rangeunderflow-expected.txt (286318 => 286319)


--- trunk/LayoutTests/fast/forms/number/number-validity-rangeunderflow-expected.txt	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/fast/forms/number/number-validity-rangeunderflow-expected.txt	2021-11-30 20:57:34 UTC (rev 286319)
@@ -13,11 +13,11 @@
 PASS The value "-1" doesn't underflow the minimum value "".
 PASS The value "-1" doesn't underflow the minimum value "xxx".
 PASS The value "0.999999999999999999999999999999999999999998" doesn't underflow the minimum value "0.999999999999999999999999999999999999999999".
-PASS The value "99" undeflows the minimum value "100".
-PASS The value "-101" undeflows the minimum value "-100".
-PASS The value "99" undeflows the minimum value "1E+2".
-PASS The value "101" undeflows the minimum value "200".
-PASS The value "99" undeflows the minimum value "1E+2" when disabled.
+PASS The value "99" underflows the minimum value "100".
+PASS The value "-101" underflows the minimum value "-100".
+PASS The value "99" underflows the minimum value "1E+2".
+PASS The value "101" underflows the minimum value "200".
+PASS The value "99" underflows the minimum value "1E+2" when disabled.
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/fast/forms/number/number-validity-rangeunderflow.html (286318 => 286319)


--- trunk/LayoutTests/fast/forms/number/number-validity-rangeunderflow.html	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/fast/forms/number/number-validity-rangeunderflow.html	2021-11-30 20:57:34 UTC (rev 286319)
@@ -16,7 +16,7 @@
     input.disabled = !!disabled;
     var underflow = input.validity.rangeUnderflow;
     var resultText = 'The value "' + input.value + '" ' +
-        (underflow ? 'undeflows' : 'doesn\'t underflow') +
+        (underflow ? 'underflows' : 'doesn\'t underflow') +
         ' the minimum value "' + input.min + '"' + (disabled ? ' when disabled.' : '.');
     if (underflow)
         testPassed(resultText);

Modified: trunk/LayoutTests/fast/forms/time/time-validity-rangeunderflow-expected.txt (286318 => 286319)


--- trunk/LayoutTests/fast/forms/time/time-validity-rangeunderflow-expected.txt	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/fast/forms/time/time-validity-rangeunderflow-expected.txt	2021-11-30 20:57:34 UTC (rev 286319)
@@ -11,10 +11,10 @@
 PASS The value "13:16" doesn't underflow the minimum value "11:00".
 PASS The value "13:16" doesn't underflow the minimum value "13:16".
 PASS The value "" sanitized from "foo" doesn't underflow the minimum value "11:00".
-PASS The value "13:16" undeflows the minimum value "13:17".
-PASS The value "23:59" undeflows the minimum value "23:59:30".
-PASS The value "13:16" undeflows the minimum value "14:00".
-PASS The value "23:59" undeflows the minimum value "23:59:30" when disabled.
+PASS The value "13:16" underflows the minimum value "13:17".
+PASS The value "23:59" underflows the minimum value "23:59:30".
+PASS The value "13:16" underflows the minimum value "14:00".
+PASS The value "23:59" underflows the minimum value "23:59:30" when disabled.
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/fast/forms/time/time-validity-rangeunderflow.html (286318 => 286319)


--- trunk/LayoutTests/fast/forms/time/time-validity-rangeunderflow.html	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/fast/forms/time/time-validity-rangeunderflow.html	2021-11-30 20:57:34 UTC (rev 286319)
@@ -18,7 +18,7 @@
     input.disabled = !!disabled;
     var underflow = input.validity.rangeUnderflow;
     var resultText = 'The value "' + input.value + '" ' +
-        (underflow ? 'undeflows' : 'doesn\'t underflow') +
+        (underflow ? 'underflows' : 'doesn\'t underflow') +
         ' the minimum value "' + input.min + '"' + (disabled ? ' when disabled.' : '.');
     if (underflow)
         testPassed(resultText);

Modified: trunk/LayoutTests/fast/forms/week/ValidityState-rangeUnderflow-week-expected.txt (286318 => 286319)


--- trunk/LayoutTests/fast/forms/week/ValidityState-rangeUnderflow-week-expected.txt	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/fast/forms/week/ValidityState-rangeUnderflow-week-expected.txt	2021-11-30 20:57:34 UTC (rev 286319)
@@ -11,10 +11,10 @@
 PASS The value "2010-W01" doesn't underflow the minimum value "2009-W51".
 PASS The value "2010-W01" doesn't underflow the minimum value "2009-W01".
 PASS The value "" sanitized from "foo" doesn't underflow the minimum value "2011-W01".
-PASS The value "2010-W01" undeflows the minimum value "2010-W02".
-PASS The value "9999-W01" undeflows the minimum value "10000-W12".
-PASS The value "2010-W01" undeflows the minimum value "2010-W02".
-PASS The value "9999-W01" undeflows the minimum value "10000-W12" when disabled.
+PASS The value "2010-W01" underflows the minimum value "2010-W02".
+PASS The value "9999-W01" underflows the minimum value "10000-W12".
+PASS The value "2010-W01" underflows the minimum value "2010-W02".
+PASS The value "9999-W01" underflows the minimum value "10000-W12" when disabled.
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/fast/forms/week/ValidityState-rangeUnderflow-week.html (286318 => 286319)


--- trunk/LayoutTests/fast/forms/week/ValidityState-rangeUnderflow-week.html	2021-11-30 20:41:45 UTC (rev 286318)
+++ trunk/LayoutTests/fast/forms/week/ValidityState-rangeUnderflow-week.html	2021-11-30 20:57:34 UTC (rev 286319)
@@ -18,7 +18,7 @@
     input.disabled = !!disabled;
     var underflow = input.validity.rangeUnderflow;
     var resultText = 'The value "' + input.value + '" ' +
-        (underflow ? 'undeflows' : 'doesn\'t underflow') +
+        (underflow ? 'underflows' : 'doesn\'t underflow') +
         ' the minimum value "' + input.min + '"' + (disabled ? ' when disabled.' : '.');
     if (underflow)
         testPassed(resultText);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to