Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | /* |
michael@0 | 2 | Tests for the OpenGL ES 2.0 HTML Canvas context |
michael@0 | 3 | |
michael@0 | 4 | Copyright (C) 2009 Ilmari Heikkinen <ilmari.heikkinen@gmail.com> |
michael@0 | 5 | |
michael@0 | 6 | Permission is hereby granted, free of charge, to any person |
michael@0 | 7 | obtaining a copy of this software and associated documentation |
michael@0 | 8 | files (the "Software"), to deal in the Software without |
michael@0 | 9 | restriction, including without limitation the rights to use, |
michael@0 | 10 | copy, modify, merge, publish, distribute, sublicense, and/or sell |
michael@0 | 11 | copies of the Software, and to permit persons to whom the |
michael@0 | 12 | Software is furnished to do so, subject to the following |
michael@0 | 13 | conditions: |
michael@0 | 14 | |
michael@0 | 15 | The above copyright notice and this permission notice shall be |
michael@0 | 16 | included in all copies or substantial portions of the Software. |
michael@0 | 17 | |
michael@0 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
michael@0 | 19 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
michael@0 | 20 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
michael@0 | 21 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
michael@0 | 22 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
michael@0 | 23 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
michael@0 | 24 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
michael@0 | 25 | OTHER DEALINGS IN THE SOFTWARE. |
michael@0 | 26 | |
michael@0 | 27 | */ |
michael@0 | 28 | .ok { |
michael@0 | 29 | color: green; |
michael@0 | 30 | } |
michael@0 | 31 | .fail { |
michael@0 | 32 | color: red; |
michael@0 | 33 | } |
michael@0 | 34 | canvas { |
michael@0 | 35 | display: none; |
michael@0 | 36 | } |
michael@0 | 37 | #test-status { |
michael@0 | 38 | font-size: large; |
michael@0 | 39 | } |
michael@0 | 40 | |
michael@0 | 41 | #test-log { |
michael@0 | 42 | padding-left: 0.5em; |
michael@0 | 43 | padding-right: 0.5em; |
michael@0 | 44 | background: white; |
michael@0 | 45 | color: black; |
michael@0 | 46 | } |
michael@0 | 47 | #test-log > div { |
michael@0 | 48 | padding-bottom: 0.5em; |
michael@0 | 49 | } |
michael@0 | 50 | #test-log h2 { |
michael@0 | 51 | font-size: 1em; |
michael@0 | 52 | margin-bottom: 0em; |
michael@0 | 53 | padding-top: 0.5em; |
michael@0 | 54 | } |
michael@0 | 55 | #test-log h3 { |
michael@0 | 56 | font-size: small; |
michael@0 | 57 | margin-left: 1.5em; |
michael@0 | 58 | margin-bottom: 0em; |
michael@0 | 59 | margin-top: 0.5em; |
michael@0 | 60 | } |
michael@0 | 61 | #test-log p { |
michael@0 | 62 | margin-left: 4em; |
michael@0 | 63 | font-size: small; |
michael@0 | 64 | margin-top: 0em; |
michael@0 | 65 | margin-bottom: 0.2em; |
michael@0 | 66 | } |