Title: [179117] branches/safari-600.1.4.15-branch/PerformanceTests
Revision
179117
Author
ddkil...@apple.com
Date
2015-01-26 09:51:50 -0800 (Mon, 26 Jan 2015)

Log Message

Merged r177051.  rdar://problem/19419760

Modified Paths

Added Paths

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  <ddkil...@apple.com>
+
+        Merge r177051.
+
+    2014-12-09  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+        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  <bshaf...@apple.com>
 
         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
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to