OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * This configuration can be used to rerun selected tests, as well | 6 * This configuration can be used to rerun selected tests, as well |
7 * as see diagnostic output from tests. It runs each test in its own | 7 * as see diagnostic output from tests. It runs each test in its own |
8 * IFrame, so the configuration consists of two parts - a 'master' | 8 * IFrame, so the configuration consists of two parts - a 'master' |
9 * config that manages all the tests, and a 'slave' config for the | 9 * config that manages all the tests, and a 'slave' config for the |
10 * IFrame that runs the individual tests. | 10 * IFrame that runs the individual tests. |
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 ul, menu, dir { | 646 ul, menu, dir { |
647 display: block; | 647 display: block; |
648 list-style-type: disc; | 648 list-style-type: disc; |
649 -webkit-margin-before: 1em; | 649 -webkit-margin-before: 1em; |
650 -webkit-margin-after: 1em; | 650 -webkit-margin-after: 1em; |
651 -webkit-margin-start: 0px; | 651 -webkit-margin-start: 0px; |
652 -webkit-margin-end: 0px; | 652 -webkit-margin-end: 0px; |
653 -webkit-padding-start: 40px; | 653 -webkit-padding-start: 40px; |
654 } | 654 } |
655 | 655 |
656 """; | 656 """; |
OLD | NEW |