Index: sky/tests/styles/border-parsing.html |
diff --git a/sky/tests/styles/border-parsing.html b/sky/tests/styles/border-parsing.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..78630b794f502bffc1faa43626e9d6d1104ab772 |
--- /dev/null |
+++ b/sky/tests/styles/border-parsing.html |
@@ -0,0 +1,14 @@ |
+<html> |
+<link rel="import" href="../resources/mocha.html" /> |
+<link rel="import" href="../resources/chai.html" /> |
+<foo /> |
+<script> |
+describe('Border', function() { |
+ it('should render', function() { |
+ var foo = document.querySelector('foo'); |
+ foo.setAttribute('style', 'border: 1px solid red'); |
+ assert.equal(foo.style.border, '1px solid rgb(255, 0, 0)'); |
+ }); |
+}); |
+</script> |
+</html> |