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: content/browser/resources/media/disjoint_range_set_test.html

Issue 681303005: Make bookmark manager load tests work again. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: asdf 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <!-- 3 <!--
4 Copyright (c) 2011 The Chromium Authors. All rights reserved. 4 Copyright (c) 2011 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <head> 8 <head>
9 <title></title> 9 <title></title>
10 <script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/ba se.js"></script> 10 <script src="https://cdn.rawgit.com/google/closure-library/master/closure/go og/base.js"></script>
11 <script src="../../../../ui/webui/resources/js/cr.js"></script> 11 <script src="../../../../ui/webui/resources/js/cr.js"></script>
12 <script src="disjoint_range_set.js"></script> 12 <script src="disjoint_range_set.js"></script>
13 <script> 13 <script>
14 goog.require('goog.testing.jsunit'); 14 goog.require('goog.testing.jsunit');
15 </script> 15 </script>
16 </head> 16 </head>
17 <body> 17 <body>
18 <script> 18 <script>
19 19
20 var range; 20 var range;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 assertRangeEquals([[4, 4], [17, 17]]); 87 assertRangeEquals([[4, 4], [17, 17]]);
88 }; 88 };
89 89
90 function testStartsEmpty() { 90 function testStartsEmpty() {
91 assertRangeEquals([]); 91 assertRangeEquals([]);
92 }; 92 };
93 93
94 </script> 94 </script>
95 </body> 95 </body>
96 </html> 96 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698