diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-01-11 12:07:24 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-01-12 12:08:38 +0100 |
commit | 1e27f2883b92e717bd44bb05fd012df8d4f532c6 (patch) | |
tree | 3afa364ec91d62165cf467098de6dd2cd1cf73c0 /components/style/servo/selector_parser.rs | |
parent | 9b3fc43f5a576f4cc466a779e2a308e53a8a46f7 (diff) | |
download | servo-1e27f2883b92e717bd44bb05fd012df8d4f532c6.tar.gz servo-1e27f2883b92e717bd44bb05fd012df8d4f532c6.zip |
selectors: Allow defining an implementation-dependent field in the matching context.
Diffstat (limited to 'components/style/servo/selector_parser.rs')
-rw-r--r-- | components/style/servo/selector_parser.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/style/servo/selector_parser.rs b/components/style/servo/selector_parser.rs index a06de17734e..b9b3a5a3b20 100644 --- a/components/style/servo/selector_parser.rs +++ b/components/style/servo/selector_parser.rs @@ -377,6 +377,7 @@ impl ::selectors::SelectorImpl for SelectorImpl { type PseudoElement = PseudoElement; type NonTSPseudoClass = NonTSPseudoClass; + type ExtraMatchingData = !; type AttrValue = String; type Identifier = Atom; type ClassName = Atom; |