Initial steps for CSSOM API

This commit is contained in:
Mohamed Albashir 2016-03-18 17:32:48 -04:00 committed by Josh Matthews
parent e551ea7322
commit b7a57ef487
15 changed files with 159 additions and 77 deletions

View file

@ -185,3 +185,8 @@ partial interface Document {
partial interface Document {
Element? elementFromPoint(double x, double y);
};
// https://drafts.csswg.org/cssom/#extensions-to-the-document-interface
partial interface Document {
[SameObject] readonly attribute StyleSheetList styleSheets;
};