https://bugs.webkit.org/show_bug.cgi?id=136648
Reviewed by Gavin Barraclough.
I need to clean up the arbitrary text on the page before telling
the test runner infrastructure that the test is complete.
* SVG/SVG-Text.html:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@173417
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2014-09-08 Myles C. Maxfield <mmaxfield@apple.com>
+
+ PerformanceTests/SVG/SVG-Text.html has unparsable output
+ https://bugs.webkit.org/show_bug.cgi?id=136648
+
+ Reviewed by Gavin Barraclough.
+
+ I need to clean up the arbitrary text on the page before telling
+ the test runner infrastructure that the test is complete.
+
+ * SVG/SVG-Text.html:
+
2014-09-05 Myles C. Maxfield <mmaxfield@apple.com>
Laying out a TextRun using an SVG font is O(n^2)
</head>
<body>
<div id="content">
-<span id="end">This string marks the end of the rendered text</span>
+<span id="end"></span>
</div>
<script>
PerfTestRunner.prepareToMeasureValuesAsync({done: onCompletedRun, unit: 'ms'});
} else
rafcount = 0;
dummy = document.getElementById("end").getBoundingClientRect().left;
- PerfTestRunner.measureValueAsync(PerfTestRunner.now() - now);
var content = document.getElementById("content");
content.removeChild(content.firstChild);
+ PerfTestRunner.measureValueAsync(PerfTestRunner.now() - now);
requestAnimationFrame(startRun);
}
startRun();