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

Unified Diff: LayoutTests/webexposed/css-properties-as-js-properties.html

Issue 928363002: bindings: Fixes CSS property listing test to test attributes on prototype. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
Index: LayoutTests/webexposed/css-properties-as-js-properties.html
diff --git a/LayoutTests/webexposed/css-properties-as-js-properties.html b/LayoutTests/webexposed/css-properties-as-js-properties.html
index 074876b39f5c8bf8148f0eacd5e8f4316314a42a..bd7762eb3351ce294f413041cc08406fdc9bdc2f 100644
--- a/LayoutTests/webexposed/css-properties-as-js-properties.html
+++ b/LayoutTests/webexposed/css-properties-as-js-properties.html
@@ -3,7 +3,7 @@
<script>
debug("This test (crudely) documents Blink's web-exposed CSS properties. All changes to this list should go through Blink's feature review process: http://www.chromium.org/blink#new-features");
debug("");
-Object.getOwnPropertyNames(document.createElement("foo").style).sort().forEach(function(property) {
+getAllPropertyNames(document.createElement("foo").style).sort().forEach(function(property) {
debug(property);
-})
+});
</script>

Powered by Google App Engine
This is Rietveld 408576698