1
0
Fork 0
firefox/layout/reftests/position-dynamic-changes/handleprop.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

10 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>");
}