| Index: sky/tests/lowlevel/style-specificity.html
|
| diff --git a/sky/tests/lowlevel/style-specificity.html b/sky/tests/lowlevel/style-specificity.html
|
| deleted file mode 100644
|
| index 7821b9ee9467070d625e2f2db43332ec3ace46f4..0000000000000000000000000000000000000000
|
| --- a/sky/tests/lowlevel/style-specificity.html
|
| +++ /dev/null
|
| @@ -1,19 +0,0 @@
|
| -<html>
|
| -<link rel="import" href="../resources/chai.html" />
|
| -<link rel="import" href="../resources/mocha.html" />
|
| -<style>
|
| - #sandbox { color: red; }
|
| - .blue { color: blue; }
|
| -</style>
|
| -<body>
|
| - <div id="sandbox" class="blue">This should be blue.</div>
|
| - <script>
|
| - describe('Specificity', function() {
|
| - it('should not exist', function() {
|
| - var sandbox = document.getElementById("sandbox");
|
| - assert.equal(getComputedStyle(sandbox).color, "rgb(0, 0, 255)");
|
| - });
|
| - });
|
| - </script>
|
| -</body>
|
| -</html>
|
|
|