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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/css-typed-om/declared-styleMap-accepts-inherit.html

Issue 2893823002: [CSS Typed OM] Make CSSKeywordValue's value attribute mutable (Closed)
Patch Set: rebase Created 3 years, 7 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 | « no previous file | third_party/WebKit/LayoutTests/http/tests/worklet/webexposed/global-interface-listing-paint-worklet-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/external/wpt/css-typed-om/declared-styleMap-accepts-inherit.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/css-typed-om/declared-styleMap-accepts-inherit.html b/third_party/WebKit/LayoutTests/external/wpt/css-typed-om/declared-styleMap-accepts-inherit.html
index afb4cef46ea9a58132e9c5be7332be6dd81f4d11..f550326de5a4fe7c9e3ef79a3429f62a5e2b6d17 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/css-typed-om/declared-styleMap-accepts-inherit.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/css-typed-om/declared-styleMap-accepts-inherit.html
@@ -10,6 +10,6 @@
<script>
test(function() {
element.styleMap.set('width', new CSSKeywordValue('inherit'));
- assert_equals(element.styleMap.get('width').keywordValue, 'inherit', 'inherit should be a valid value for styleMap properties');
+ assert_equals(element.styleMap.get('width').value, 'inherit', 'inherit should be a valid value for styleMap properties');
});
</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/worklet/webexposed/global-interface-listing-paint-worklet-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698