style: Re-enable the rule that was accidentally disabled by a typo in the CSS parser.

In #21946 I commented out this rule because before that patch we were
accidentally ignoring it because of a typo in the CSS parser, since that PR
didn't intend to change behavior.

This PR does though, and re-enables the rule.
This commit is contained in:
Emilio Cobos Álvarez 2018-10-19 01:23:35 +02:00
parent bcafe4188f
commit 5a2ba9661b
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -260,16 +260,10 @@ svg > * {
margin: 0;
}
/* The outer fragment wrapper of an inline absolute hypothetical fragment.
*
* FIXME(emilio): This was disabled because of a typo in the CSS parser,
* re-enable or figure out why it's not needed.
/* The outer fragment wrapper of an inline absolute hypothetical fragment. */
*|*::-servo-inline-absolute {
clip: auto;
border: none;
padding: 0;
margin: 0;
}
*/