mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
67 lines
2.5 KiB
HTML
67 lines
2.5 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<title>script.aculo.us Unit test file</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<script src="../../lib/prototype.js" type="text/javascript"></script>
|
|
<script src="../../src/scriptaculous.js" type="text/javascript"></script>
|
|
<script src="../../src/unittest.js" type="text/javascript"></script>
|
|
<link rel="stylesheet" href="../test.css" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<h1>script.aculo.us Unit test file</h1>
|
|
<p>
|
|
Tests for String.prototype extensions in effects.js
|
|
</p>
|
|
|
|
<!-- Log output -->
|
|
<div id="testlog"> </div>
|
|
|
|
<!-- Tests follow -->
|
|
<script type="text/javascript" language="javascript" charset="utf-8">
|
|
// <![CDATA[
|
|
|
|
new Test.Unit.Runner({
|
|
|
|
testStringParseColor: function() { with(this) {
|
|
assertEqual('#000000', "#000000".parseColor());
|
|
assertEqual('#000000', "rgb(0,0,0)".parseColor());
|
|
assertEqual('#000000', "rgb(0, 0, 0)".parseColor());
|
|
assertEqual('#000000', "#000".parseColor());
|
|
|
|
assertEqual('#1', "#1".parseColor());
|
|
assertEqual('#12', "#12".parseColor());
|
|
assertEqual('#112233', "#123".parseColor());
|
|
assertEqual('#1234', "#1234".parseColor());
|
|
assertEqual('#12345', "#12345".parseColor());
|
|
assertEqual('#123456', "#123456".parseColor());
|
|
|
|
assertEqual('#abcdef', "#aBcDeF".parseColor());
|
|
assertEqual('#aabbcc', "#aBc".parseColor());
|
|
|
|
assertEqual('white', "white".parseColor());
|
|
assertEqual('#123456', "#123456".parseColor('#000000')); // default to #000000 if not parseable
|
|
assertEqual('#000000', "white".parseColor('#000000')); // default to #000000 if not parseable
|
|
|
|
assertEqual('#ffffff', "rgb(255,255,255)".parseColor());
|
|
assertEqual('#ff0000', "rgb(255,0,0)".parseColor());
|
|
assertEqual('#00ff00', "rgb(0,255,0)".parseColor());
|
|
assertEqual('#0000ff', "rgb(0,0,255)".parseColor());
|
|
}},
|
|
|
|
testStringParseStyle: function() { with(this) {
|
|
var expected = "#<Hash:{'fontSize': '11px'}>";
|
|
|
|
assertInspect(expected, "font-size:11px".parseStyle());
|
|
assertInspect(expected, "font-SIZE: 11px".parseStyle());
|
|
assertInspect(expected, "font-size:11px ".parseStyle());
|
|
assertInspect(expected, " Font-size: 11px ".parseStyle());
|
|
}}
|
|
|
|
});
|
|
|
|
// ]]>
|
|
</script>
|
|
</body>
|
|
</html> |