https://bugs.webkit.org/show_bug.cgi?id=128746
Reviewed by Ryosuke Niwa.
This patch adds performance testing for image valued shape-outside.
The test is skipped by default for now.
* Layout/Shapes/ShapeOutsideRaster.html: Added.
* Layout/Shapes/resources/shape.gif: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@164065
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2014-02-13 Zoltan Horvath <zoltan@webkit.org>
+
+ [CSS Shapes] Add performance test for raster shape
+ https://bugs.webkit.org/show_bug.cgi?id=128746
+
+ Reviewed by Ryosuke Niwa.
+
+ This patch adds performance testing for image valued shape-outside.
+ The test is skipped by default for now.
+
+ * Layout/Shapes/ShapeOutsideRaster.html: Added.
+ * Layout/Shapes/resources/shape.gif: Added.
+
2014-02-10 Zoltan Horvath <zoltan@webkit.org>
[CSS Shapes] Add initial performance tests for polygon shape
--- /dev/null
+<!DOCTYPE html>
+<html>
+ <head>
+ <link rel="stylesheet" href="resources/shapes.css" type="text/css"></link>
+ <script src="../../resources/runner.js"></script>
+ <script src="resources/shapes.js"></script>
+ </head>
+ <body>
+ <pre id="log"></pre>
+ <script>
+ var shape = "url(resources/shape.gif)";
+ PerfTestRunner.measureTime(createShapeOutsideTest("200px", "200px", shape, 1000));
+ </script>
+ </body>
+</html>