mirror of
https://github.com/servo/servo.git
synced 2025-06-06 00:25:37 +00:00
"Links to the multipage version of the specification are unfortunately likely to break over time." -- https://html.spec.whatwg.org/multipage/asefij.html This commit removes all references to the specific pages when viewing WHATWG using multipage mode. I went through all these links and they redirect fine. Regex used to generate this commit: `s_whatwg.org/multipage/.*#_whatwg.org/multipage/#_g`
33 lines
613 B
CSS
33 lines
613 B
CSS
/*
|
|
|
|
https://html.spec.whatwg.org/multipage/#flow-content-3
|
|
|
|
> In quirks mode, the following rules are also expected to apply:
|
|
|
|
*/
|
|
|
|
@namespace url(http://www.w3.org/1999/xhtml);
|
|
|
|
|
|
form { margin-bottom: 1em; }
|
|
|
|
|
|
table {
|
|
font-weight: initial;
|
|
font-style: initial;
|
|
font-variant: initial;
|
|
font-size: initial;
|
|
line-height: initial;
|
|
white-space: initial;
|
|
text-align: initial;
|
|
}
|
|
|
|
|
|
/* FIXME: https://html.spec.whatwg.org/multipage/#margin-collapsing-quirks */
|
|
|
|
|
|
input:not([type=image]), textarea { box-sizing: border-box; }
|
|
|
|
|
|
img[align=left i] { margin-right: 3px; }
|
|
img[align=right i] { margin-left: 3px; }
|