Title: [246961] trunk/LayoutTests
- Revision
- 246961
- Author
- [email protected]
- Date
- 2019-06-30 21:03:42 -0700 (Sun, 30 Jun 2019)
Log Message
Unreviewed, rolling out r246959.
svg/clip-path/clip-hidpi.svg is flaky on mac-wk2-ews
Reverted changeset:
"LayoutTests svg/clip-path/clip-hidpi.svg isn't working as
expected due to a syntax error"
https://bugs.webkit.org/show_bug.cgi?id=199313
https://trac.webkit.org/changeset/246959
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (246960 => 246961)
--- trunk/LayoutTests/ChangeLog 2019-07-01 02:32:19 UTC (rev 246960)
+++ trunk/LayoutTests/ChangeLog 2019-07-01 04:03:42 UTC (rev 246961)
@@ -1,5 +1,18 @@
2019-06-30 Fujii Hironori <[email protected]>
+ Unreviewed, rolling out r246959.
+
+ svg/clip-path/clip-hidpi.svg is flaky on mac-wk2-ews
+
+ Reverted changeset:
+
+ "LayoutTests svg/clip-path/clip-hidpi.svg isn't working as
+ expected due to a syntax error"
+ https://bugs.webkit.org/show_bug.cgi?id=199313
+ https://trac.webkit.org/changeset/246959
+
+2019-06-30 Fujii Hironori <[email protected]>
+
LayoutTests svg/clip-path/clip-hidpi.svg isn't working as expected due to a syntax error
https://bugs.webkit.org/show_bug.cgi?id=199313
Modified: trunk/LayoutTests/svg/clip-path/clip-hidpi-expected.svg (246960 => 246961)
--- trunk/LayoutTests/svg/clip-path/clip-hidpi-expected.svg 2019-07-01 02:32:19 UTC (rev 246960)
+++ trunk/LayoutTests/svg/clip-path/clip-hidpi-expected.svg 2019-07-01 04:03:42 UTC (rev 246961)
@@ -1,15 +1,18 @@
<svg xmlns="http://www.w3.org/2000/svg">
-<foreignObject width="200" height="100" opacity=".5">
+<!-- The FO should be clipped with only the green half visible. -->
+<defs>
+<clipPath id="clip">
+ <rect width="200" height="50"/>
+ <rect width="200" height="50"/>
+</clipPath>
+</defs>
+<foreignObject width="200" height="100" clip-path="url(#clip)" opacity=".5">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<div style="background: green; height: 50px;"></div>
+ <div style="background: red; height: 50px;"></div>
</body>
</html>
</foreignObject>
-<script>
-if (window.testRunner) {
- testRunner.waitUntilDone();
- testRunner.setBackingScaleFactor(2, () => { testRunner.notifyDone() });
-}
-</script>
</svg>
+
Modified: trunk/LayoutTests/svg/clip-path/clip-hidpi.svg (246960 => 246961)
--- trunk/LayoutTests/svg/clip-path/clip-hidpi.svg 2019-07-01 02:32:19 UTC (rev 246960)
+++ trunk/LayoutTests/svg/clip-path/clip-hidpi.svg 2019-07-01 04:03:42 UTC (rev 246961)
@@ -15,10 +15,8 @@
</html>
</foreignObject>
<script>
-if (window.testRunner) {
- testRunner.waitUntilDone();
- testRunner.setBackingScaleFactor(2, () => { testRunner.notifyDone() });
-}
+ testRunner.setBackingScaleFactor(2, () -> { testRunner.notifyDone() });
+ testRunner.waitUntilDone();
</script>
</svg>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes