1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/inspector/tests/chrome/test_bug708874.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,33 @@ 1.4 +#test-div { 1.5 + color: rgb(0, 0, 0); 1.6 + font-family: serif; 1.7 + font-weight: 400; 1.8 +} 1.9 + 1.10 +#test-div:hover { 1.11 + color: rgb(10, 0, 0); 1.12 +} 1.13 + 1.14 +#test-div:active { 1.15 + font-family: Arial; 1.16 +} 1.17 + 1.18 +#test-div:focus { 1.19 + font-weight: 800; 1.20 +} 1.21 + 1.22 +#test-button { 1.23 + color: rgb(0, 0, 0); 1.24 +} 1.25 + 1.26 +#test-button:disabled { 1.27 + color: rgb(40, 0, 0); 1.28 +} 1.29 + 1.30 +#test-link:visited { 1.31 + color: rgb(20, 0, 0); 1.32 +} 1.33 + 1.34 +#test-link:link { 1.35 + color: rgb(30, 0, 0); 1.36 +}