Index: third_party/WebKit/LayoutTests/dialog/backdrop-dynamic-style-change.html |
diff --git a/third_party/WebKit/LayoutTests/dialog/backdrop-dynamic-style-change.html b/third_party/WebKit/LayoutTests/dialog/backdrop-dynamic-style-change.html |
deleted file mode 100644 |
index 6e6967de65719ea37a1496d064aa5a4f789ea4ae..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/dialog/backdrop-dynamic-style-change.html |
+++ /dev/null |
@@ -1,32 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<style> |
-dialog { |
- visibility: hidden; |
-} |
- |
-::backdrop { |
- position: absolute; |
- top: 100px; |
- left: 100px; |
- height: 100px; |
- width: 100px; |
- background-color: red; |
-} |
- |
-.green::backdrop { |
- background-color: green; |
-} |
-</style> |
-</head> |
-<body> |
-Test dynamic changes to ::backdrop style. The test passes if there is a green box below. |
-<dialog></dialog> |
-<script> |
-dialog = document.querySelector('dialog'); |
-dialog.showModal(); |
-dialog.classList.add('green'); |
-</script> |
-</body> |
-</html> |