author | Xidorn Quan <me@upsuper.org> |
Thu, 19 Jan 2017 16:49:05 +1100 | |
changeset 330258 | dc783cbd753b67ea9b07e5591bbe9ce802b228fd |
parent 330257 | d4d776c90a151cbd12f2f45462003576d0dacc65 |
child 330259 | 4261558b51c923baab40598106189b6c44546f07 |
push id | 31235 |
push user | cbook@mozilla.com |
push date | Fri, 20 Jan 2017 14:22:17 +0000 |
treeherder | mozilla-central@2f514ff474a8 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | heycam |
bugs | 1331903 |
milestone | 53.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/layout/style/test/test_inherit_computation.html +++ b/layout/style/test/test_inherit_computation.html @@ -147,16 +147,20 @@ function test_property(property) gParentRuleTop.style.removeProperty(prereq); gChildRuleTop.style.removeProperty(prereq); } } }); } for (var prop in gCSSProperties) { + // Skip -moz-binding because it effectively drops the frame. + if (prop == "-moz-binding") { + continue; + } var info = gCSSProperties[prop]; gChildRule3.style.setProperty(prop, info.other_values[0], ""); } for (var prop in gCSSProperties) test_property(prop); </script>