| OLD | NEW |
| 1 "{{A|B={{C|D=blablabla}}}}" is parsed | 1 "{{A|B={{C|D=blablabla}}}}" is parsed |
| 2 { | 2 { |
| 3 A : { | 3 A : { |
| 4 B : { | 4 B : { |
| 5 C : { | 5 C : { |
| 6 D : "blablabla" | 6 D : "blablabla" |
| 7 } | 7 } |
| 8 } | 8 } |
| 9 } | 9 } |
| 10 } | 10 } |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 { | 38 { |
| 39 A : { | 39 A : { |
| 40 } | 40 } |
| 41 } | 41 } |
| 42 "{{AbC|xyz | 42 "{{AbC|xyz |
| 43 \r}}" is parsed | 43 \r}}" is parsed |
| 44 { | 44 { |
| 45 AbC : "xyz" | 45 AbC : "xyz" |
| 46 } | 46 } |
| 47 { | 47 { |
| 48 examples : { |
| 49 Single_Example : { |
| 50 Code : " var x = Math.max(107 - 3, 48 * 90); |
| 51 document.write(x); |
| 52 // Output: |
| 53 // 4320" |
| 54 Description : "The following code shows how to get the larger of two
expressions." |
| 55 Language : "JavaScript" |
| 56 } |
| 57 } |
| 48 pageTitle : { | 58 pageTitle : { |
| 49 } | 59 } |
| 50 remarks : { | 60 remarks : "The optional number1, number2, ..., numberN arguments are numeric
expressions to be evaluated. |
| 51 Remarks : "The optional number1, number2, ..., numberN arguments are num
eric expressions to be evaluated. | |
| 52 If no arguments are provided, the return value is equal to [[javascript/Number/c
onstants|Number.NEGATIVE_INFINITY]]. If any argument is '''NaN''' , the return v
alue is also '''NaN'''." | 61 If no arguments are provided, the return value is equal to [[javascript/Number/c
onstants|Number.NEGATIVE_INFINITY]]. If any argument is '''NaN''' , the return v
alue is also '''NaN'''." |
| 53 } | |
| 54 summary : "Returns the larger of a set of supplied numeric expressions." | 62 summary : "Returns the larger of a set of supplied numeric expressions." |
| 55 } | 63 } |
| 56 { | 64 { |
| 57 CSSproperties : { | 65 CSSproperties : { |
| 58 Animatable : "Yes" | 66 Animatable : "Yes" |
| 59 Applies to : "All elements" | 67 Applies to : "All elements" |
| 60 CSS object model property : "color" | 68 CSS object model property : "color" |
| 61 CSS percentages : "NA" | 69 CSS percentages : "NA" |
| 62 Computed value : "For a non-translucent color, an hexadecimal equivalent
is used. Otherwise it is the RGBa equivalent" | 70 Computed value : "For a non-translucent color, an hexadecimal equivalent
is used. Otherwise it is the RGBa equivalent" |
| 63 Inherited : "Yes" | 71 Inherited : "Yes" |
| 64 Initial value : "black, except in a few cases (see notes)" | 72 Initial value : "black, except in a few cases (see notes)" |
| 65 Media : "visual" | 73 Media : "visual" |
| 66 Values : { | 74 Values : { |
| 67 CSS Property Value : { | 75 CSS Property Value : { |
| 68 Data Type : "color" | 76 Data Type : "color" |
| 69 Description : "[[css/color|CSS color value]]" | 77 Description : "[[css/color|CSS color value]]" |
| 70 } | 78 } |
| 71 } | 79 } |
| 72 } | 80 } |
| 81 examples : { |
| 82 Single Example : { |
| 83 Code : "/* Setting a paragraph color to turquoise with a name value
*/ |
| 84 p {color:turquoise} |
| 85 /* Setting the same propriety with an hexadecimal value*/ |
| 86 p {color:#40E0D0} |
| 87 /* with a RGB decimal value */ |
| 88 p { color: rgb(64,224,208) } |
| 89 /* with a RGB percentage value */ |
| 90 p { color: rgb(25.1%,87.8%,81.6%) } |
| 91 /* with an HSL value */ |
| 92 p { color: hsl(174,72%,56%) } |
| 93 /* We now want our color to be 20% translucent which means a 80% opacity */ |
| 94 /* We can achieve this with an RGBa value */ |
| 95 p { color: rgba(64,224,208,0.8) } |
| 96 /* Or an HSLa value */ |
| 97 p { color: hsla(174,72%,56%,0.8) }" |
| 98 Language : "CSS" |
| 99 LiveURL : "http://code.webplatform.org/gist/5502992" |
| 100 } |
| 101 } |
| 73 pageTitle : { | 102 pageTitle : { |
| 74 } | 103 } |
| 75 standardizationStatus : "W3C Recommendation" | 104 standardizationStatus : "W3C Recommendation" |
| 76 summary : "The color property sets the color of an element's foreground cont
ent (usually text), accepting any standard CSS color from keywords and hex value
s to RGB(a) and HSL(a)." | 105 summary : "The color property sets the color of an element's foreground cont
ent (usually text), accepting any standard CSS color from keywords and hex value
s to RGB(a) and HSL(a)." |
| 106 values : { |
| 107 CSS Property Value : { |
| 108 Data Type : "color" |
| 109 Description : "[[css/color|CSS color value]]" |
| 110 } |
| 111 } |
| 77 } | 112 } |
| 78 | 113 |
| OLD | NEW |