mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix Spark CSS updating tests in Safari 4, iPad
This commit is contained in:
@@ -185,11 +185,11 @@ Tinytest.add("spark - patch - copyAttributes", function(test) {
|
||||
{id:'foo', 'class':'bar',
|
||||
style:'border:1px solid blue;', name:'baz'});
|
||||
a.check();
|
||||
test.equal(a.node().style.borderColor, "blue");
|
||||
test.equal(a.node().style.borderLeftColor, "blue");
|
||||
|
||||
a.copy({id: "foo", style:'border:1px solid red'});
|
||||
a.check();
|
||||
test.equal(a.node().style.borderColor, "red");
|
||||
test.equal(a.node().style.borderLeftColor, "red");
|
||||
|
||||
a.copy({id: "foo", 'class':'ha'});
|
||||
a.check();
|
||||
|
||||
Reference in New Issue
Block a user