- From: Simon Pieters <simonp@opera.com>
- Date: Mon, 23 Mar 2015 08:43:48 +0100
- To: "Tab Atkins Jr." <jackalmage@gmail.com>, "Jonathan Kingston" <jonathan@jooped.co.uk>
- Cc: "www-style list" <www-style@w3.org>
On Sun, 22 Mar 2015 23:55:02 +0100, Jonathan Kingston
<jonathan@jooped.co.uk> wrote:
> I didn't really make my mail clear before, the spec mentions the key
> 'moreStyleSheets' will this be a named key of document.styleSheets, an
> indexed key or a totally separate top level key?
>
> document.styleSheets = styleSheets{
> 1:{}, 2: {}, 3: moreStyleSheets{}};
>
> document.styleSheets = styleSheets{
> 1:{}, 2: {}, moreStyleSheets: moreStyleSheets{}};
>
> document.moreStyleSheets = moreStyleSheets{}};
It's document.moreStyleSheets. The IDL is:
interface TreeScope {
attribute StyleSheetList moreStyleSheets;
};
Document implements TreeScope;
ShadowRoot implements TreeScope;
--
Simon Pieters
Opera Software
Received on Monday, 23 March 2015 07:44:21 UTC