Update CSS tests to revision 1399540ef50bff32151a5058da8910483538f382

This commit is contained in:
Keith Yeung 2015-12-10 11:56:14 -08:00
parent fe01f140d8
commit 7ce88db5ca
147 changed files with 2360 additions and 509 deletions

View file

@ -62,7 +62,7 @@
checkDOMPoint(new DOMPoint({x:1, z:3}), {x:1, y:0, z:3, w:1});
},'testConstructorDOMPoint');
test(function() {
checkDOMPoint(new DOMPoint(1, undefined), {x:1, y:NaN, z:0, w:1});
checkDOMPoint(new DOMPoint(1, undefined), {x:1, y:0, z:0, w:1});
},'testConstructor2undefined');
test(function() {
checkDOMPoint(new DOMPoint("a", "b"), {x:NaN, y:NaN, z:0, w:1});