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

Unified Diff: chrome/browser/resources/shared/js/class_list_test.html

Issue 1695022: NTP - Refactor the most visited code to uncouple it from the rest of the NTP.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/shared/js/class_list.js ('k') | tools/grit/grit/format/html_inline.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/shared/js/class_list_test.html
===================================================================
--- chrome/browser/resources/shared/js/class_list_test.html (revision 0)
+++ chrome/browser/resources/shared/js/class_list_test.html (revision 0)
@@ -0,0 +1,91 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title></title>
+<script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.js"></script>
+<script src="class_list.js"></script>
+<script>
+
+goog.require('goog.testing.jsunit');
+
+</script>
+</head>
+<body>
+
+<script>
+
+var el = document.body;
+
+function testLength() {
+ el.className = 'a b';
+ assertEquals(2, el.classList.length);
+ el.setAttribute('class', 'a b c');
+ assertEquals(3, el.classList.length);
+}
+
+function testItem() {
+ el.className = 'a b';
+ assertEquals('a', el.classList.item(0));
+ assertEquals('b', el.classList.item(1));
+ el.setAttribute('class', 'a b c');
+ assertEquals('a', el.classList.item(0));
+ assertEquals('b', el.classList.item(1));
+ assertEquals('c', el.classList.item(2));
+}
+
+function testContains() {
+ el.className = 'a b';
+ assertTrue(el.classList.contains('a'));
+ assertTrue(el.classList.contains('b'));
+ assertFalse(el.classList.contains('c'));
+
+ assertEquals('b', el.classList.item(1));
+ el.setAttribute('class', 'a b c');
+ assertTrue(el.classList.contains('a'));
+ assertTrue(el.classList.contains('b'));
+ assertTrue(el.classList.contains('c'));
+}
+
+function testToken() {
+ assertThrows(function() {
+ el.classList.add('');
+ });
+ assertThrows(function() {
+ el.classList.add(' ');
+ });
+ assertThrows(function() {
+ el.classList.add('\t');
+ });
+ assertThrows(function() {
+ el.classList.add('\n');
+ });
+}
+
+function testAdd() {
+ el.className = 'a b';
+ el.classList.add('a');
+ assertEquals('a b', el.className);
+ el.classList.add('c');
+ assertEquals('a b c', el.className);
+}
+
+function testRemove() {
+ el.className = 'a b';
+ el.classList.remove('b');
+ assertEquals('a', el.className);
+ el.classList.remove('a');
+ assertEquals('', el.className);
+}
+
+function testToggle() {
+ el.className = 'a b';
+ assertFalse(el.classList.toggle('a'));
+ assertEquals('b', el.className);
+ assertTrue(el.classList.toggle('a'));
+ assertEquals('b a', el.className);
+}
+
+</script>
+
+</body>
+</html>
Property changes on: chrome\browser\resources\shared\js\class_list_test.html
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/resources/shared/js/class_list.js ('k') | tools/grit/grit/format/html_inline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698