Add real test for the nsCSSValue regression caught on Monday only by an unexpected pass. b=382027

This commit is contained in:
dbaron@dbaron.org 2007-08-31 10:07:02 -07:00
Родитель 26bf65e3ee
Коммит 2dad2a0ef4
2 изменённых файлов: 39 добавлений и 0 удалений

Просмотреть файл

@ -77,6 +77,7 @@ _TEST_FILES = test_bug74880.html \
test_bug377947.html \
test_bug379440.html \
test_bug379741.html \
test_bug382027.html \
test_bug383075.html \
test_bug387615.html \
test_bug389464.html \

Просмотреть файл

@ -0,0 +1,38 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=382027
-->
<head>
<title>Test for Bug 382027</title>
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=382027">Mozilla Bug 382027</a>
<div id="content" style="display: none;"
><div style="border-style: groove none none;"
><div style="border-style: none none double"
></div
></div
></div>
<pre id="test">
<script class="testbody" type="text/javascript">
/*
* Test that the regression in the original patch checked in by bug
* 382027 is caught by something other than an unexpected pass.
*/
var e = document.createElement("div");
e.style.setProperty("border-style", "groove none none none", "");
is(e.getAttribute("style"), "border-style: groove none none;");
e.style.setProperty("border-style", "none none double none", "");
is(e.getAttribute("style"), "border-style: none none double;");
</script>
</pre>
</body>
</html>