mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
e8b6991cce
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>");
|
|
}
|