summaryrefslogtreecommitdiffstats
path: root/layout/reftests/position-dynamic-changes/handleprop.js
blob: 476961defdd4f2afd639c61a35838022161cbc17 (plain)
1
2
3
4
5
6
7
8
9
10
// 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>");
}