OLD | NEW |
---|---|
(Empty) | |
1 <html> | |
2 <link rel="import" href="../resources/mocha.html" /> | |
3 <link rel="import" href="../resources/chai.html" /> | |
4 <foo /> | |
5 <script> | |
6 describe('Border', function() { | |
7 it('should render', function() { | |
8 var foo = document.querySelector('foo'); | |
9 foo.setAttribute('style', 'border: 1px solid red'); | |
10 assert.equal(foo.style.border, '1px solid rgb(255, 0, 0)'); | |
11 }); | |
12 }); | |
13 </script> | |
14 </html> | |
OLD | NEW |