gecko/layout/reftests/position-dynamic-changes/handleprop.js
Ehsan Akhgari 2940bf2f84 Bug 157681 - Part 1: Add a test suite to make sure that dynamic changes to the position CSS properties work correctly; r=dbaron
These series of tests attempt to ensure conformance to the CSS 2.1
sections 10.3.7 and 10.6.4.
2012-06-06 00:53:33 -04:00

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