Title: [179117] branches/safari-600.1.4.15-branch/PerformanceTests

Diff

Modified: branches/safari-600.1.4.15-branch/PerformanceTests/ChangeLog (179116 => 179117)


--- branches/safari-600.1.4.15-branch/PerformanceTests/ChangeLog	2015-01-26 17:20:20 UTC (rev 179116)
+++ branches/safari-600.1.4.15-branch/PerformanceTests/ChangeLog	2015-01-26 17:51:50 UTC (rev 179117)
@@ -1,3 +1,17 @@
+2015-01-26  David Kilzer  <[email protected]>
+
+        Merge r177051.
+
+    2014-12-09  Myles C. Maxfield  <[email protected]>
+
+        Add performance test related to font fallback
+        https://bugs.webkit.org/show_bug.cgi?id=139332
+
+        Reviewed by Simon Fraser.
+
+        * Layout/font-fallback.html: Added.
+        * Layout/resources/font-fallback.html: Added.
+
 2015-01-21  Babak Shafiei  <[email protected]>
 
         Merge r177000.

Added: branches/safari-600.1.4.15-branch/PerformanceTests/Layout/font-fallback.html (0 => 179117)


--- branches/safari-600.1.4.15-branch/PerformanceTests/Layout/font-fallback.html	                        (rev 0)
+++ branches/safari-600.1.4.15-branch/PerformanceTests/Layout/font-fallback.html	2015-01-26 17:51:50 UTC (rev 179117)
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<body>
+<script src=""
+<script>
+window._onload_ = function() {
+    PerfTestRunner.measurePageLoadTime({path: "resources/font-fallback.html"});
+}
+</script>
+</body>

Added: branches/safari-600.1.4.15-branch/PerformanceTests/Layout/resources/font-fallback.html (0 => 179117)


--- branches/safari-600.1.4.15-branch/PerformanceTests/Layout/resources/font-fallback.html	                        (rev 0)
+++ branches/safari-600.1.4.15-branch/PerformanceTests/Layout/resources/font-fallback.html	2015-01-26 17:51:50 UTC (rev 179117)
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html>
+<body>
+<div>
+<script>
+if (window.internals)
+    window.internals.invalidateFontCache();
+for (var i = 12380; i <= 40907; ++i)
+    document.write("&#x" + i.toString(16) + ";");
+</script>
+</div>
+</body>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to