| OLD | NEW |
| 1 Sky Style Language | 1 Sky Style Language |
| 2 ================== | 2 ================== |
| 3 | 3 |
| 4 THIS IS NOT UP TO DATE |
| 5 |
| 6 DO NOT IMPLEMENT THIS YET |
| 7 |
| 8 It has not been Dartified. |
| 9 |
| 10 It has not been converted to have a sane element.style API. |
| 11 |
| 12 It has not been converted to have layout be interruptible using Futures. |
| 13 |
| 14 |
| 4 Planed changes | 15 Planed changes |
| 5 -------------- | 16 -------------- |
| 6 | 17 |
| 7 Add //-to-end-of-line comments to be consistent with the script | 18 Add //-to-end-of-line comments to be consistent with the script |
| 8 language. | 19 language. |
| 9 | 20 |
| 10 | 21 |
| 11 Style Parser | 22 Style Parser |
| 12 ------------ | 23 ------------ |
| 13 | 24 |
| (...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1062 ``` | 1073 ``` |
| 1063 | 1074 |
| 1064 The other elements don't have any default styles. | 1075 The other elements don't have any default styles. |
| 1065 | 1076 |
| 1066 These declarations are all shared between all the elements (so e.g. if | 1077 These declarations are all shared between all the elements (so e.g. if |
| 1067 you reach in and change the declaration that was added to a ``span`` | 1078 you reach in and change the declaration that was added to a ``span`` |
| 1068 element, you're going to change the styles of all the other | 1079 element, you're going to change the styles of all the other |
| 1069 default-hidden elements). (In other words, in the code snippets above, | 1080 default-hidden elements). (In other words, in the code snippets above, |
| 1070 the ``d`` variable is initialised in shared code, and only the | 1081 the ``d`` variable is initialised in shared code, and only the |
| 1071 addStyles() call is per-element.) | 1082 addStyles() call is per-element.) |
| OLD | NEW |