summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/variables/custom-properties-in-object-model.html
Commit message (Collapse)AuthorAgeFilesLines
* Don't insert an extra space when serializing custom properties.shans2016-02-191-2/+2
| | | | | | Review URL: https://codereview.chromium.org/1717443003 Cr-Commit-Position: refs/heads/master@{#376424}
* [Variables] Enable get/setProperty and similar APIs from the CSSOMleviw2015-11-241-0/+37
Add support for custom properties to the rule property set OM. My approach adds an extra "if" to many of the standard code paths in the interest of avoiding unnecessary code duplication, but if we're really worried about performance, this could be changed. There are clearly still parts of the code that assumes a property ID should be enough to lookup an arbitrary property. These will have to be burned down, but in the meantime I short-circuited findCSSPropertyWithID for the custom property case. BUG=551553 Review URL: https://codereview.chromium.org/1405293012 Cr-Commit-Position: refs/heads/master@{#361279}