summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_specified_value_serialization.html
blob: edf84fe8dabf76dd7051b65976cc2247f77bda92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!doctype html>
<html>
<head>
  <title>Test for miscellaneous specified value issues</title>
  <script type="application/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=">Mozilla Bug </a>
<p id="display"></p>
<div id="content" style="display: none">
</div>

<pre id="test">
<script type="application/javascript">

(function test_bug_721136() {
  // Test for transform property serialization.
  [
    [" mAtRiX(1, 2,3,4, 5,6 ) ", "matrix(1, 2, 3, 4, 5, 6)"],
    [" mAtRiX3d( 1,2,3,0,4 ,5,6,0,7,8 , 9,0,10, 11,12,1 )  ",
     "matrix3d(1, 2, 3, 0, 4, 5, 6, 0, 7, 8, 9, 0, 10, 11, 12, 1)"],
    [" pErSpEcTiVe( 400Px ) ", "perspective(400px)"],
    [" rOtAtE( 90dEg ) ", "rotate(90deg)"],
    [" rOtAtE3d( 0,0 , 1 ,180DeG ) ", "rotate3d(0, 0, 1, 180deg)"],
    [" rOtAtEx( 100GrAD ) ", "rotateX(100grad)"],
    [" rOtAtEy( 1.57RaD ) ", "rotateY(1.57rad)"],
    [" rOtAtEz( 0.25TuRn ) ", "rotateZ(0.25turn)"],
    [" sCaLe( 2 ) ", "scale(2)"],
    [" sCaLe( 2,3 ) ", "scale(2, 3)"],
    [" sCaLe3D( 2,4 ,  -9 )  ", "scale3d(2, 4, -9)"],
    [" sCaLeX( 2 ) ", "scaleX(2)"],
    [" sCaLeY( 2 ) ", "scaleY(2)"],
    [" sCaLeZ( 2 ) ", "scaleZ(2)"],
    [" sKeW( 45dEg ) ", "skew(45deg)"],
    [" sKeW( 45dEg,45DeG ) ", "skew(45deg, 45deg)"],
    [" sKeWx( 45DeG ) ", "skewX(45deg)"],
    [" sKeWy( 45DeG ) ", "skewY(45deg)"],
    [" tRaNsLaTe( 1Px ) ", "translate(1px)"],
    [" tRaNsLaTe( 1Px,3Pt ) ", "translate(1px, 3pt)"],
    [" tRaNsLaTe3D( 21pX,-6pX , 4pX )  ", "translate3d(21px, -6px, 4px)"],
    [" tRaNsLaTeX( 1pT ) ", "translateX(1pt)"],
    [" tRaNsLaTeY( 1iN ) ", "translateY(1in)"],
    [" tRaNsLaTeZ( 15.4pX ) ", "translateZ(15.4px)"],
    ["tranSlatex( 16px )rotatez(-90deg)  rotate(100grad)\ttranslate3d(12pt, 0pc, 0.0em)",
     "translateX(16px) rotateZ(-90deg) rotate(100grad) translate3d(12pt, 0pc, 0em)"],
  ].forEach(function(arr) {
    document.documentElement.style.MozTransform = arr[0];
    is(document.documentElement.style.MozTransform, arr[1],
      "incorrect serialization");
  });

  var elt = document.documentElement;

  elt.setAttribute("style",
                   "transform: tRANslatEX(5px) TRanslATey(10px) translatez(2px) ROTATEX(30deg) rotateY(30deg) rotatez(5deg) SKEWx(10deg) skewy(10deg) scaleX(2) SCALEY(0.5) scalez(2)");
  is(elt.style.getPropertyValue("transform"),
     "translateX(5px) translateY(10px) translateZ(2px) rotateX(30deg) rotateY(30deg) rotateZ(5deg) skewX(10deg) skewY(10deg) scaleX(2) scaleY(0.5) scaleZ(2)",
     "expected case canonicalization of transform functions");

  elt.setAttribute("style",
                   "font-variant-alternates: SWASH(fOo) stYLIStiC(Bar)");
  is(elt.style.getPropertyValue("font-variant-alternates"),
     "swash(fOo) stylistic(Bar)",
     "expected case canonicalization of transform functions");

  elt.setAttribute("style", ""); // leave the page in a useful state
})();

(function test_bug_1347164() {
  // Test that specified color values are serialized as "rgb()"
  // IFF they're fully-opaque (and otherwise as "rgba()").
  var color = [
    ["rgba(0, 0, 0, 1)", "rgb(0, 0, 0)"],
    ["rgba(0, 0, 0, 0.5)", "rgba(0, 0, 0, 0.5)"],
    ["hsla(0, 0%, 0%, 1)", "rgb(0, 0, 0)"],
    ["hsla(0, 0%, 0%, 0.5)", "rgba(0, 0, 0, 0.5)"],
    // css-color-4
    ["rgba(0 0 0 / 1)", "rgb(0, 0, 0)"],
    ["rgba(0 0 0 / 0.5)", "rgba(0, 0, 0, 0.5)"],
    ["rgb(0 0 0 / 1)", "rgb(0, 0, 0)"],
    ["rgb(0 0 0 / 0.5)", "rgba(0, 0, 0, 0.5)"],
    ["hsla(0 0% 0% / 1)", "rgb(0, 0, 0)"],
    ["hsla(0deg 0% 0% / 0.5)", "rgba(0, 0, 0, 0.5)"],
    ["hsl(0 0% 0% / 1)", "rgb(0, 0, 0)"],
    ["hsl(0 0% 0% / 0.5)", "rgba(0, 0, 0, 0.5)"],
  ];

  var frame_container = document.getElementById("display");
  var p = document.createElement("p");
  frame_container.appendChild(p);

  for (var i = 0; i < color.length; ++i) {
    var test = color[i];
    p.style.color = test[0];
    is(p.style.color, test[1], "serialization value of " + test[0]);
  }

  p.remove();
})();

</script>
</pre>
</body>
</html>