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

Side by Side Diff: sky/tests/mutation-observer/observe-attributes.sky

Issue 694423002: Replace <link rel="import"> with <import> (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
OLDNEW
1 <html> 1 <html>
2 <link rel="import" href="../resources/chai.sky" /> 2 <import src="../resources/chai.sky" />
3 <link rel="import" href="../resources/mocha.sky" /> 3 <import src="../resources/mocha.sky" />
4 <script> 4 <script>
5 describe('MutationObserver.observe on attributes', function() { 5 describe('MutationObserver.observe on attributes', function() {
6 it('should handle basic aspects of attribute observation', function(done) { 6 it('should handle basic aspects of attribute observation', function(done) {
7 var div; 7 var div;
8 var observer; 8 var observer;
9 var mutations; 9 var mutations;
10 10
11 function start() { 11 function start() {
12 div = document.createElement('div'); 12 div = document.createElement('div');
13 div.setAttribute('bar', 'foo'); 13 div.setAttribute('bar', 'foo');
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 observer.disconnect(); 560 observer.disconnect();
561 done(); 561 done();
562 } 562 }
563 563
564 start(); 564 start();
565 }); 565 });
566 }); 566 });
567 </script> 567 </script>
568 </body> 568 </body>
569 </html> 569 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698