https://bugs.webkit.org/show_bug.cgi?id=117439
Reviewed by Andreas Kling.
Merge https://chromium.googlesource.com/chromium/blink/+/
7eb727a7d5765eaa1779e00a45ac9f63e2e0047f
* animations/keyframes-rule-expected.txt:
* animations/keyframes-rule.html:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@151418
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-06-10 Ryosuke Niwa <rniwa@webkit.org>
+
+ Use shouldBeType in animations/keyframes-rule.html
+ https://bugs.webkit.org/show_bug.cgi?id=117439
+
+ Reviewed by Andreas Kling.
+
+ Merge https://chromium.googlesource.com/chromium/blink/+/7eb727a7d5765eaa1779e00a45ac9f63e2e0047f
+
+ * animations/keyframes-rule-expected.txt:
+ * animations/keyframes-rule.html:
+
2013-06-10 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Unreviewed, EFL gardening. Fix wrong expectation result on 151416.
PASS rules2.item(1).cssText is '50% { left: 30px; }'
PASS rules2.item(2).cssText is '100% { left: 20px; }'
-PASS typeof(rules2.item(0).style) is typeof(CSSStyleDeclaration)
+PASS rules2.item(0).style is an instance of CSSStyleDeclaration
PASS rules2.item(0).style.length is 1
Find a rule
debug("");
-shouldBe("typeof(rules2.item(0).style)", "typeof(CSSStyleDeclaration)");
+shouldBeType("rules2.item(0).style", "CSSStyleDeclaration");
shouldBe("rules2.item(0).style.length", "1");
debug("");