1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
[scope-style-sharing-001.html]
[@scope with sibling style sharing, second sibling exits scope]
expected:
if (os == "mac") and not debug: [PASS, FAIL]
if (os == "android") and not debug: [PASS, FAIL]
[@scope with sibling style sharing, first sibling matches scope]
expected:
if (os == "mac") and not debug: [PASS, FAIL]
if (os == "android") and not debug: [PASS, FAIL]
[@scope with sibling style sharing, first sibling enters scope]
expected:
if (os == "mac") and not debug: [PASS, FAIL]
if (os == "android") and not debug: [PASS, FAIL]
[@scope with sibling style sharing, second sibling enters scope]
expected:
if (os == "mac") and not debug: [PASS, FAIL]
if (os == "android") and not debug: [PASS, FAIL]
[@scope with sibling style sharing, first sibling has implicit scope]
expected:
if (os == "mac") and not debug: [PASS, FAIL]
if (os == "android") and not debug: [PASS, FAIL]
[@scope with sibling style sharing, second sibling has implicit scope]
expected:
if (os == "mac") and not debug: [PASS, FAIL]
if (os == "android") and not debug: [PASS, FAIL]
[@scope with sibling style sharing, second sibling exits implicit scope]
expected:
if (os == "mac") and not debug: [PASS, FAIL]
if (os == "android") and not debug: [PASS, FAIL]
[@scope with sibling style sharing, first sibling exits implicit scope]
expected:
if (os == "mac") and not debug: [PASS, FAIL]
if (os == "android") and not debug: [PASS, FAIL]
[@scope with sibling style sharing, first sibling enters scope with :has]
expected:
if (os == "mac") and not debug: [PASS, FAIL]
if (os == "android") and not debug: [PASS, FAIL]
[@scope with sibling style sharing, second sibling enters scope with :has]
expected:
if (os == "mac") and not debug: [PASS, FAIL]
if (os == "android") and not debug: [PASS, FAIL]
[@scope with sibling style sharing, first sibling enters scope with ID selector]
expected:
if (os == "mac") and not debug: [PASS, FAIL]
if (os == "android") and not debug: [PASS, FAIL]
[@scope with sibling style sharing, second sibling enters scope with ID selector]
expected:
if (os == "mac") and not debug: [PASS, FAIL]
if (os == "android") and not debug: [PASS, FAIL]
|