Title: [214395] trunk/LayoutTests
Revision
214395
Author
mmaxfi...@apple.com
Date
2017-03-25 00:42:46 -0700 (Sat, 25 Mar 2017)

Log Message

Post-commit test fix after r214394
https://bugs.webkit.org/show_bug.cgi?id=170083

Unreviewed.

* fast/text/variations/optical-sizing.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (214394 => 214395)


--- trunk/LayoutTests/ChangeLog	2017-03-25 06:50:18 UTC (rev 214394)
+++ trunk/LayoutTests/ChangeLog	2017-03-25 07:42:46 UTC (rev 214395)
@@ -1,3 +1,12 @@
+2017-03-25  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+        Post-commit test fix after r214394
+        https://bugs.webkit.org/show_bug.cgi?id=170083
+
+        Unreviewed.
+
+        * fast/text/variations/optical-sizing.html:
+
 2017-03-24  Myles C. Maxfield  <mmaxfi...@apple.com>
 
         Add font-optical-sizing to CSSComputedStyleDeclaration

Modified: trunk/LayoutTests/fast/text/variations/optical-sizing.html (214394 => 214395)


--- trunk/LayoutTests/fast/text/variations/optical-sizing.html	2017-03-25 06:50:18 UTC (rev 214394)
+++ trunk/LayoutTests/fast/text/variations/optical-sizing.html	2017-03-25 07:42:46 UTC (rev 214395)
@@ -33,7 +33,7 @@
 
 var computedStyle = window.getComputedStyle(document.getElementById('test1'));
 var found = false;
-for (let i = 0; i < x.length; ++i) {
+for (let i = 0; i < computedStyle.length; ++i) {
     if (computedStyle[i] == "font-optical-sizing") {
         found = true;
         testPassed("Found optical sizing");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to