| OLD | NEW |
| (Empty) | |
| 1 Verifies CSS pretty-printing functionality. |
| 2 |
| 3 |
| 4 Running: testFontFace |
| 5 ====== 8< ------ |
| 6 @font-face { |
| 7 font-family: MyHelvetica; |
| 8 src: local('Helvetica Neue Bold'),local('HelveticaNeue-Bold'),url(MgOpenMode
rnaBold.ttf); |
| 9 font-weight: bold; |
| 10 } |
| 11 |
| 12 div { |
| 13 color: red |
| 14 } |
| 15 |
| 16 ------ >8 ====== |
| 17 Correct mapping for <font-face> |
| 18 Correct mapping for <red> |
| 19 |
| 20 Running: testCharsetRule |
| 21 ====== 8< ------ |
| 22 @charset 'iso-8859-15';p { |
| 23 margin: 0 |
| 24 } |
| 25 |
| 26 ------ >8 ====== |
| 27 Correct mapping for <charset> |
| 28 Correct mapping for <iso> |
| 29 Correct mapping for <margin> |
| 30 |
| 31 Running: testImportRule |
| 32 ====== 8< ------ |
| 33 @import url('bluish.css') projection,tv;span { |
| 34 border: 1px solid black |
| 35 } |
| 36 |
| 37 ------ >8 ====== |
| 38 Correct mapping for <import> |
| 39 Correct mapping for <bluish> |
| 40 Correct mapping for <projection> |
| 41 Correct mapping for <span> |
| 42 Correct mapping for <border> |
| 43 Correct mapping for <black> |
| 44 |
| 45 Running: testImportWithMediaQueryRule |
| 46 ====== 8< ------ |
| 47 @import url('landscape.css') screen and (orientation: landscape); |
| 48 article { |
| 49 background: yellow |
| 50 } |
| 51 |
| 52 ------ >8 ====== |
| 53 Correct mapping for <import> |
| 54 Correct mapping for <url> |
| 55 Correct mapping for <orientation> |
| 56 Correct mapping for <article> |
| 57 Correct mapping for <background> |
| 58 Correct mapping for <yellow> |
| 59 |
| 60 Running: testKeyframesRule |
| 61 ====== 8< ------ |
| 62 p { |
| 63 animation-duration: 3s; |
| 64 } |
| 65 |
| 66 @keyframes slidein { |
| 67 from { |
| 68 margin-left: 100%; |
| 69 width: 300%; |
| 70 } |
| 71 |
| 72 to { |
| 73 margin-left: 0%; |
| 74 width: 100%; |
| 75 } |
| 76 } |
| 77 |
| 78 p { |
| 79 animation-name: slidein |
| 80 } |
| 81 |
| 82 ------ >8 ====== |
| 83 Correct mapping for <animation-duration> |
| 84 Correct mapping for <3s> |
| 85 Correct mapping for <keyframes> |
| 86 Correct mapping for <from> |
| 87 Correct mapping for <300%> |
| 88 Correct mapping for <animation-name> |
| 89 |
| OLD | NEW |