Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(884)

Unified Diff: third_party/WebKit/LayoutTests/fast/css/webkit-keyframes-crash.html

Issue 2523143002: Layout tests: remove webkit prefix from test names (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/css/webkit-keyframes-crash.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/webkit-keyframes-crash.html b/third_party/WebKit/LayoutTests/fast/css/webkit-keyframes-crash.html
deleted file mode 100644
index e4b41bf7c5b02611147ce071ae50cdfbd5900852..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/css/webkit-keyframes-crash.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-<body>
- <p>Test for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=62384">62384</a>: WebCore::WebKitCSSKeyframesRuleInternal::nameAttrSetter() - crash</p>
- <p>This test passed if it did not crash</p>
- <p id="console">FAILED (test not run)</p>
- <script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- function main(){
- var e = window.document.styleSheets[0].cssRules[0];
- e.cssRules.item(0).parentStyleSheet.removeRule();
- e.name = 'bar';
- document.getElementById('console').innerHTML = "PASSED";
- }
- window.onload = main;
- </script>
- <style>
- @-webkit-keyframes foo {
- 0% {foo: bar;}
- }
- </style>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698