File tree 2 files changed +50
-0
lines changed
2 files changed +50
-0
lines changed Original file line number Diff line number Diff line change
1
+ // /**
2
+ // * Copyright © Magento, Inc. All rights reserved.
3
+ // * See COPYING.txt for license details.
4
+ // */
5
+
6
+ .error {
7
+ some: ' stuff' ;
8
+ }
9
+
10
+ /* *
11
+ * Should throw an error, Will be implemented in MAGETWO-49778
12
+ */
13
+ div .error {
14
+ anything: ' else' ;
15
+ }
16
+
17
+ .nav > LI {
18
+ #bar .baz ();
19
+ }
20
+
21
+ .nav > ul {
22
+ foo: ' bar' ;
23
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Copyright © Magento. All rights reserved.
4
+ * See COPYING.txt for license details.
5
+ */
6
+ namespace Magento2 \Tests \Less ;
7
+
8
+ class TypeSelectorsUnitTest extends AbstractLessSniffUnitTestCase
9
+ {
10
+ /**
11
+ * @inheritdoc
12
+ */
13
+ public function getErrorList ()
14
+ {
15
+ return [
16
+ 17 => 1 ,
17
+ ];
18
+ }
19
+
20
+ /**
21
+ * @inheritdoc
22
+ */
23
+ public function getWarningList ()
24
+ {
25
+ return [];
26
+ }
27
+ }
You can’t perform that action at this time.
0 commit comments