Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / webexposed / css-properties-as-js-properties.html
blobbd7762eb3351ce294f413041cc08406fdc9bdc2f
1 <!DOCTYPE html>
2 <script src="../resources/js-test.js"></script>
3 <script>
4 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");
5 debug("");
6 getAllPropertyNames(document.createElement("foo").style).sort().forEach(function(property) {
7 debug(property);
8 });
9 </script>