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

Side by Side Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html

Issue 2097093002: [Typed OM] Rename cssString methods to cssText (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rename-transformvalue
Patch Set: Update usage in csspaint logging for tests Created 4 years, 5 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../../resources/testharness.js"></script> 2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script> 3 <script src="../../resources/testharnessreport.js"></script>
4 4
5 <div id="testElement"></div> 5 <div id="testElement"></div>
6 6
7 <script> 7 <script>
8 8
9 // Delete 9 // Delete
10 test(function() { 10 test(function() {
11 testElement.style.width = '80px'; 11 testElement.style.width = '80px';
12 assert_equals(testElement.styleMap.get('width').cssString, '80px'); 12 assert_equals(testElement.styleMap.get('width').cssText, '80px');
13 13
14 testElement.styleMap.delete('width'); 14 testElement.styleMap.delete('width');
15 assert_equals(testElement.styleMap.get('width'), null); 15 assert_equals(testElement.styleMap.get('width'), null);
16 assert_equals(testElement.style.width, ''); 16 assert_equals(testElement.style.width, '');
17 }, "delete() removes the value from the property when set in element.style"); 17 }, "delete() removes the value from the property when set in element.style");
18 18
19 test(function() { 19 test(function() {
20 testElement.styleMap.set('width', new CSSSimpleLength(100, 'px')); 20 testElement.styleMap.set('width', new CSSSimpleLength(100, 'px'));
21 assert_equals(testElement.styleMap.get('width').cssString, '100px'); 21 assert_equals(testElement.styleMap.get('width').cssText, '100px');
22 22
23 testElement.styleMap.delete('width'); 23 testElement.styleMap.delete('width');
24 assert_equals(testElement.styleMap.get('width'), null); 24 assert_equals(testElement.styleMap.get('width'), null);
25 assert_equals(testElement.style.width, ''); 25 assert_equals(testElement.style.width, '');
26 }, "delete() removes the value from the property when set in element.styleMap"); 26 }, "delete() removes the value from the property when set in element.styleMap");
27 27
28 test(function() { 28 test(function() {
29 testElement.style.width = '90px'; 29 testElement.style.width = '90px';
30 assert_equals(testElement.styleMap.get('width').cssString, '90px'); 30 assert_equals(testElement.styleMap.get('width').cssText, '90px');
31 31
32 testElement.styleMap.delete('WIdtH'); 32 testElement.styleMap.delete('WIdtH');
33 assert_equals(testElement.styleMap.get('width'), null); 33 assert_equals(testElement.styleMap.get('width'), null);
34 assert_equals(testElement.style.width, ''); 34 assert_equals(testElement.style.width, '');
35 }, "delete() works when mixed case is used for the property name"); 35 }, "delete() works when mixed case is used for the property name");
36 36
37 test(function() { 37 test(function() {
38 assert_equals(testElement.styleMap.get('height'), null); 38 assert_equals(testElement.styleMap.get('height'), null);
39 testElement.styleMap.delete('height'); 39 testElement.styleMap.delete('height');
40 assert_equals(testElement.styleMap.get('height'), null); 40 assert_equals(testElement.styleMap.get('height'), null);
41 }, "delete() does nothing if the property isn't set"); 41 }, "delete() does nothing if the property isn't set");
42 42
43 test(function() { 43 test(function() {
44 assert_throws(new TypeError(), function() { 44 assert_throws(new TypeError(), function() {
45 testElement.styleMap.delete('lemons'); 45 testElement.styleMap.delete('lemons');
46 }); 46 });
47 }, "Attempting to delete an invalid property throws"); 47 }, "Attempting to delete an invalid property throws");
48 48
49 // TODO(meade): Test deleting a property containing multiple values once that ha s been implemented. 49 // TODO(meade): Test deleting a property containing multiple values once that ha s been implemented.
50 50
51 </script> 51 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698