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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../resources/js-test.js"></script> 2 <script src="../resources/js-test.js"></script>
3 <script> 3 <script>
4 debug("This test (crudely) documents Blink's web-exposed CSS properties. All ch anges to this list should go through Blink's feature review process: http://www. chromium.org/blink#new-features"); 4 debug("This test (crudely) documents Blink's web-exposed CSS properties. All ch anges to this list should go through Blink's feature review process: http://www. chromium.org/blink#new-features");
5 debug(""); 5 debug("");
6 Object.getOwnPropertyNames(document.createElement("foo").style).sort().forEach(f unction(property) { 6 getAllPropertyNames(document.createElement("foo").style).sort().forEach(function (property) {
7 debug(property); 7 debug(property);
8 }) 8 });
9 </script> 9 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698