summaryrefslogtreecommitdiff
path: root/dom/tests/mochitest
diff options
context:
space:
mode:
authorPale Moon <git-repo@palemoon.org>2014-08-16 16:31:56 +0200
committerPale Moon <git-repo@palemoon.org>2014-08-16 16:31:56 +0200
commit3116ce1c2b477beae73ea1744c4288e51f07bcca (patch)
tree88d78ad8517e0661d79f9ccc82a339fa3472607f /dom/tests/mochitest
parent2a27aa6ab63f71e84acaf0dd6d4442a2f613e570 (diff)
downloadpalemoon-gre-3116ce1c2b477beae73ea1744c4288e51f07bcca.tar.gz
Use un-prefixed CSS box-sizing in tests
Diffstat (limited to 'dom/tests/mochitest')
-rw-r--r--dom/tests/mochitest/general/test_bug861217.html6
-rw-r--r--dom/tests/mochitest/general/test_offsets.css2
-rw-r--r--dom/tests/mochitest/general/test_offsets.html2
3 files changed, 5 insertions, 5 deletions
diff --git a/dom/tests/mochitest/general/test_bug861217.html b/dom/tests/mochitest/general/test_bug861217.html
index 937e54c84..157487d92 100644
--- a/dom/tests/mochitest/general/test_bug861217.html
+++ b/dom/tests/mochitest/general/test_bug861217.html
@@ -24,16 +24,16 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=861217
<td id="tableCell3" style="overflow: hidden"><div style="display: inline-block; margin-right: 8px; margin-bottom: 10px; width: 100px; height: 100px; background-color: Khaki">3</div></td>
</tr>
<tr>
- <td id="tableCell4" style="overflow: hidden"><div style="display: inline-block; margin-right: 3px; margin-left: 1px; -moz-box-sizing: border-box; box-sizing: border-box; width: 100px; height: 100px; border-left: 6px solid black; border-bottom: 2px solid black; background-color: LightCoral">4</div></td>
+ <td id="tableCell4" style="overflow: hidden"><div style="display: inline-block; margin-right: 3px; margin-left: 1px; box-sizing: border-box; width: 100px; height: 100px; border-left: 6px solid black; border-bottom: 2px solid black; background-color: LightCoral">4</div></td>
</tr>
<tr>
<td id="tableCell5" style="overflow: hidden"><div style="display: inline-block; border-right: 9px solid black; width: 100px; height: 100px; background-color: LightSeaGreen">5</div></td>
</tr>
<tr>
- <td id="tableCell6" style="overflow: hidden"><div style="-moz-box-sizing: border-box; box-sizing: border-box; width: 100px; height: 100px; padding-top: 3px; padding-right: 13px; background-color: Orange">6</div></td>
+ <td id="tableCell6" style="overflow: hidden"><div style="box-sizing: border-box; width: 100px; height: 100px; padding-top: 3px; padding-right: 13px; background-color: Orange">6</div></td>
</tr>
<tr>
- <td id="tableCell7" style="overflow: hidden"><div style="display: inline-block; margin-right: 11px; margin-left: 4px; -moz-box-sizing: border-box; box-sizing: border-box; width: 100px; height: 100px; border-right: 6px solid black; border-bottom: 8px solid black; padding-top: 5px; padding-right: 9px; padding-bottom: 8px; padding-left: 7px; background-color: Silver">7</div></td>
+ <td id="tableCell7" style="overflow: hidden"><div style="display: inline-block; margin-right: 11px; margin-left: 4px; box-sizing: border-box; width: 100px; height: 100px; border-right: 6px solid black; border-bottom: 8px solid black; padding-top: 5px; padding-right: 9px; padding-bottom: 8px; padding-left: 7px; background-color: Silver">7</div></td>
</tr>
<tr>
<td id="tableCell8" style="overflow: hidden"><div style="display: inline-block; margin-top: 7px; margin-bottom: 1px; border-right: 6px solid black; border-bottom: 8px solid black; padding-top: 5px; padding-right: 9px; padding-bottom: 8px; padding-left: 7px; width: 100px; height: 100px; background-color: Turquoise">8</div></td>
diff --git a/dom/tests/mochitest/general/test_offsets.css b/dom/tests/mochitest/general/test_offsets.css
index f47b8b7de..18231c4d9 100644
--- a/dom/tests/mochitest/general/test_offsets.css
+++ b/dom/tests/mochitest/general/test_offsets.css
@@ -1,3 +1,3 @@
button, vbox, menu, menuitem, menupopup {
- -moz-box-sizing: content-box;
+ box-sizing: content-box;
}
diff --git a/dom/tests/mochitest/general/test_offsets.html b/dom/tests/mochitest/general/test_offsets.html
index 43c7d6ae5..c8448802a 100644
--- a/dom/tests/mochitest/general/test_offsets.html
+++ b/dom/tests/mochitest/general/test_offsets.html
@@ -8,7 +8,7 @@
<style>
input {
- -moz-box-sizing: content-box;
+ box-sizing: content-box;
}
</style>
</head>