Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: sky/tests/styles/border-parsing.html

Issue 654393004: Test for border parsing I failed to include in my last change. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | sky/tests/styles/border-parsing-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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>
OLDNEW
« no previous file with comments | « no previous file | sky/tests/styles/border-parsing-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698