Auto merge of #5779 - nox:css-escape, r=Ms2ger

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/5779)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-04-25 05:42:41 -05:00
commit 1f9de5ee2c
6 changed files with 53 additions and 8 deletions

View file

@ -0,0 +1,12 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*
* The origin of this IDL file is
* http://dev.w3.org/csswg/cssom/#the-css-interface
*/
interface CSS {
[Throws]
static DOMString escape(DOMString ident);
};