mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14d4122730
These series of tests attempt to ensure conformance to the CSS 2.1 sections 10.3.7 and 10.6.4.
11 lines
381 B
JavaScript
11 lines
381 B
JavaScript
// Add the correct border/margin/padding style
|
|
if (window.location.search.length > 0) {
|
|
var params = window.location.search.substr(1).split("_");
|
|
if (params[0] == "border") {
|
|
params[0] = "border-width";
|
|
}
|
|
document.write("<style>");
|
|
document.write((params[1] == "parent") ? "#parent" : "#child");
|
|
document.write("{ " + params[0] + ": 1px 2px 3px 4px; }</style>");
|
|
}
|