1
1
module Selectors exposing (..)
2
2
3
3
import Css exposing (..)
4
- import Css.Foreign exposing (..)
4
+ import Css.Global exposing (..)
5
5
import Css.Preprocess exposing (stylesheet )
6
6
import Expect
7
7
import Test exposing (..)
@@ -45,17 +45,17 @@ elements =
45
45
, testSelector " li" li
46
46
, testSelector " main" main_
47
47
, testSelector " p" p
48
- , testSelector " pre" Css . Foreign . pre
48
+ , testSelector " pre" Css . Global . pre
49
49
, testSelector " dd" dd
50
50
, testSelector " dl" dl
51
51
, testSelector " dt" dt
52
52
, testSelector " a" a
53
53
, testSelector " code" code
54
- , testSelector " small" Css . Foreign . small
54
+ , testSelector " small" Css . Global . small
55
55
, testSelector " span" span
56
56
, testSelector " strong" strong
57
57
, testSelector " i" i
58
- , testSelector " em" Css . Foreign . em
58
+ , testSelector " em" Css . Global . em
59
59
, testSelector " q" q
60
60
, testSelector " img" img
61
61
, testSelector " audio" audio
@@ -64,7 +64,7 @@ elements =
64
64
, testSelector " caption" caption
65
65
, testSelector " col" col
66
66
, testSelector " colgroup" colgroup
67
- , testSelector " table" Css . Foreign . table
67
+ , testSelector " table" Css . Global . table
68
68
, testSelector " tbody" tbody
69
69
, testSelector " td" td
70
70
, testSelector " tfoot" tfoot
@@ -79,7 +79,7 @@ elements =
79
79
, testSelector " legend" legend
80
80
, testSelector " optgroup" optgroup
81
81
, testSelector " option" option
82
- , testSelector " progress" Css . Foreign . progress
82
+ , testSelector " progress" Css . Global . progress
83
83
, testSelector " select" select
84
84
]
85
85
0 commit comments