layout/xul/reftest/image-size.xul

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <?xml version="1.0"?>
     2 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
     3 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
     5 <hbox align="end">
     6   <image src="image4x3.png"/>
     7   <image src="image4x3.png" width="80" height="20"/>
     8   <image src="image4x3.png" width="10" height="70"/>
     9   <image src="image4x3.png" width="80"/>
    10   <image src="image4x3.png" height="60"/>
    11   <image src="image4x3.png" width="20"/>
    12   <image src="image4x3.png" height="15"/>
    13   <image src="image4x3.png" style="border: 8px solid green;"/>
    14   <image src="image4x3.png" width="80" style="border: 8px solid yellow;"/>
    15   <image src="image4x3.png" height="58" style="border: 8px solid green;"/>
    16   <image src="image4x3.png" width="24" style="border: 8px solid yellow;"/>
    17   <image src="image4x3.png" height="22" style="border: 8px solid green;"/>
    18   <image src="image4x3.png" width="74"
    19          style="border: 1px solid yellow; border-top-width: 1px; border-right-width: 2px; border-bottom-width: 4px; border-left-width: 8px;"/>
    20   <image src="image4x3.png" height="11"
    21          style="border: 1px solid green; border-top-width: 1px; border-right-width: 2px; border-bottom-width: 4px; border-left-width: 8px;"/>
    22 </hbox>
    24 <hbox align="end">
    25   <image src="image4x3.png" style="width: auto; height: auto;"/>
    26   <image src="image4x3.png" style="width: 80px; height: 20px;"/>
    27   <image src="image4x3.png" style="width: 10px; height: 70px;"/>
    28   <image src="image4x3.png" style="width: 80px;"/>
    29   <image src="image4x3.png" style="height: 60px;"/>
    30   <image src="image4x3.png" style="width: 20px;"/>
    31   <image src="image4x3.png" style="height: 15px;"/>
    32   <image src="image4x3.png" style="width: 80px; height: 20px;" width="60" height="25"/>
    33   <image src="image4x3.png" style="width: 10px; height: 70px;" width="20" height="75"/>
    34   <image src="image4x3.png" style="width: 80px; padding: 8px;"/>
    35   <image src="image4x3.png" style="height: 58px; padding: 8px;"/>
    36   <image src="image4x3.png" style="width: 24px; padding: 8px;"/>
    37   <image src="image4x3.png" style="height: 22px; padding: 8px;"/>
    38   <image src="image4x3.png" style="width: 67px; padding: 4px 2px 8px 1px"/>
    39   <image src="image4x3.png" style="height: 18px; padding: 4px 2px 8px 1px"/>
    40 </hbox>
    42 <hbox align="end">
    43   <image src="image4x3.png" maxwidth="20"/>
    44 </hbox>
    46 <hbox align="end">
    47   <image src="image4x3.png" maxheight="15"/>
    48 </hbox>
    50 <hbox align="end">
    51   <image src="image4x3.png" maxwidth="30" maxheight="25"/>
    52 </hbox>
    54 <hbox align="end">
    55   <image src="image4x3.png" style="max-width: 20px;"/>
    56 </hbox>
    58 <hbox align="end">
    59   <image src="image4x3.png" style="max-height: 15px;"/>
    60 </hbox>
    62 <hbox align="end">
    63   <image src="image4x3.png" style="max-width: 30px; max-height: 25px;"/>
    64 </hbox>
    66 <hbox align="end">
    67   <image src="image4x3.png" maxwidth="24" style="border: 8px solid green;"/>
    68 </hbox>
    69 <hbox align="end">
    70   <image src="image4x3.png" maxheight="22" style="border: 8px solid green;"/>
    71 </hbox>
    73 <hbox align="end">
    74   <image src="image4x3.png" minwidth="20"/>
    75   <image src="image4x3.png" minheight="20"/>
    76   <image src="image4x3.png" minwidth="20" minheight="25"/>
    77   <image src="image4x3.png" minwidth="60" style="border: 8px solid green;"/>
    78   <image src="image4x3.png" minheight="88" style="border: 8px solid yellow;"/>
    79   <image src="image4x3.png" minwidth="90" minheight="76" style="border: 8px solid green;"/>
    80   <image src="image4x3.png" minwidth="112" minheight="76" style="border: 8px solid yellow;"/>
    81   <image src="image4x3.png" minwidth="106"
    82          style="border: 1px solid yellow; border-top-width: 1px; border-right-width: 2px; border-bottom-width: 4px; border-left-width: 8px;"/>
    83 </hbox>
    85 <hbox align="end">
    86   <image src="image4x3.png" style="min-width: 60px;"/>
    87   <image src="image4x3.png" style="min-height: 90px;"/>
    88   <image src="image4x3.png" style="min-width 41px; min-height: 45px;"/>
    89   <image src="image4x3.png" style="min-width: 60px; padding: 8px;"/>
    90   <image src="image4x3.png" style="min-height: 88px; padding: 8px;"/>
    91   <image src="image4x3.png" style="min-width: 90px; min-height: 76px; padding: 8px;"/>
    92   <image src="image4x3.png" style="min-width: 112px; min-height: 76px; padding: 8px;"/>
    93 </hbox>
    95 <hbox align="start">
    96   <image style="width: auto; height: auto; list-style-image: url(image4x3.png); -moz-image-region: rect(5px, 25px, 20px, 5px);"/>
    97   <image width="80" style="list-style-image: url(image4x3.png); -moz-image-region: rect(5px, 25px, 20px, 5px);"/>
    98   <image height="30" style="list-style-image: url(image4x3.png); -moz-image-region: rect(5px, 25px, 20px, 5px);"/>
    99   <image style="width: 10px; list-style-image: url(image4x3.png); -moz-image-region: rect(5px, 25px, 21px, 5px);"/>
   100   <image style="height: 8px; list-style-image: url(image4x3.png); -moz-image-region: rect(5px, 25px, 21px, 5px);"/>
   101 </hbox>
   103 <hbox align="end">
   104   <image maxwidth="20"
   105          style="list-style-image: url(image4x3.png); -moz-image-region: rect(5px, 25px, 20px, 5px);"/>
   106 </hbox>
   108 <hbox align="end">
   109   <image maxheight="15"
   110          style="list-style-image: url(image4x3.png); -moz-image-region: rect(5px, 25px, 20px, 5px);"/>
   111 </hbox>
   113 <hbox align="end">
   114   <image maxwidth="24"
   115          style="list-style-image: url(image4x3.png); -moz-image-region: rect(5px, 25px, 20px, 5px); border: 8px solid green;"/>
   116 </hbox>
   118 <hbox align="end">
   119   <image maxheight="22"
   120          style="list-style-image: url(image4x3.png); -moz-image-region: rect(5px, 25px, 20px, 5px); border: 8px solid green;"/>
   121 </hbox>
   123 </window>

mercurial