Title: [262357] trunk/LayoutTests
- Revision
- 262357
- Author
- [email protected]
- Date
- 2020-05-31 01:10:03 -0700 (Sun, 31 May 2020)
Log Message
[iPad] REGRESSION(r261940): fast/text-autosizing/ios/idempotentmode/idempotent-autosizing-after-changing-initial-scale.html is failing
https://bugs.webkit.org/show_bug.cgi?id=212564
<rdar://problem/63729887>
Unreviewed.
Setting width=device-width was causing us to clamp the initial-scale to 1, thereby disabling autosizing.
* fast/text-autosizing/ios/idempotentmode/idempotent-autosizing-after-changing-initial-scale.html:
* platform/ipad/TestExpectations:
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (262356 => 262357)
--- trunk/LayoutTests/ChangeLog 2020-05-31 07:05:35 UTC (rev 262356)
+++ trunk/LayoutTests/ChangeLog 2020-05-31 08:10:03 UTC (rev 262357)
@@ -1,3 +1,16 @@
+2020-05-31 Myles C. Maxfield <[email protected]>
+
+ [iPad] REGRESSION(r261940): fast/text-autosizing/ios/idempotentmode/idempotent-autosizing-after-changing-initial-scale.html is failing
+ https://bugs.webkit.org/show_bug.cgi?id=212564
+ <rdar://problem/63729887>
+
+ Unreviewed.
+
+ Setting width=device-width was causing us to clamp the initial-scale to 1, thereby disabling autosizing.
+
+ * fast/text-autosizing/ios/idempotentmode/idempotent-autosizing-after-changing-initial-scale.html:
+ * platform/ipad/TestExpectations:
+
2020-05-30 Commit Queue <[email protected]>
Unreviewed, reverting r262335.
Modified: trunk/LayoutTests/fast/text-autosizing/ios/idempotentmode/idempotent-autosizing-after-changing-initial-scale.html (262356 => 262357)
--- trunk/LayoutTests/fast/text-autosizing/ios/idempotentmode/idempotent-autosizing-after-changing-initial-scale.html 2020-05-31 07:05:35 UTC (rev 262356)
+++ trunk/LayoutTests/fast/text-autosizing/ios/idempotentmode/idempotent-autosizing-after-changing-initial-scale.html 2020-05-31 08:10:03 UTC (rev 262357)
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!-- webkit-test-runner [ useFlexibleViewport=true contentMode=desktop ] -->
<html>
<head>
-<meta name="viewport" content="width=device-width, initial-scale=1">
+<meta name="viewport" content="initial-scale=1">
<style>
body, html {
margin: 0;
@@ -83,16 +83,16 @@
const metaViewport = document.querySelector("meta");
await dumpTextSizes("At initial scale 1");
- metaViewport.content = "width=device-width, initial-scale=0.5";
+ metaViewport.content = "initial-scale=0.5";
await dumpTextSizes("After changing initial scale to 0.5");
- metaViewport.content = "width=device-width, initial-scale=0.75";
+ metaViewport.content = "initial-scale=0.75";
await dumpTextSizes("After changing initial scale to 0.75");
- metaViewport.content = "width=device-width, initial-scale=1.0";
+ metaViewport.content = "initial-scale=1.0";
await dumpTextSizes("After changing initial scale back to 1");
- metaViewport.content = "width=device-width, initial-scale=1.25";
+ metaViewport.content = "initial-scale=1.25";
await dumpTextSizes("After changing initial scale to 1.25");
document.querySelector(".text-containers").remove();
Modified: trunk/LayoutTests/platform/ipad/TestExpectations (262356 => 262357)
--- trunk/LayoutTests/platform/ipad/TestExpectations 2020-05-31 07:05:35 UTC (rev 262356)
+++ trunk/LayoutTests/platform/ipad/TestExpectations 2020-05-31 08:10:03 UTC (rev 262357)
@@ -66,5 +66,3 @@
webkit.org/b/203264 editing/pasteboard/smart-paste-paragraph-004.html [ Pass ]
media/picture-in-picture [ Pass ]
-
-webkit.org/b/212483 fast/text-autosizing/ios/idempotentmode/idempotent-autosizing-after-changing-initial-scale.html [ Failure ]
\ No newline at end of file
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes