Bug 1331047: Fix another instance of a test relying on animating an non-existing pseudo-element. r?hiro draft
authorEmilio Cobos Álvarez <emilio@crisal.io>
Mon, 24 Apr 2017 13:28:34 +0200
changeset 568646 b06b31b54d18d705a0f21f1c60b25c59c48095ec
parent 568645 54ed97f40063b9c35f26da984cbb02d4e602ba9f
child 568647 4239c095fe683bce84f12dd92bdd91abe079f170
child 568757 f3a3b2ed1553526ec9bcfff7d594823522ba2b44
push id55935
push userbmo:emilio+bugs@crisal.io
push dateWed, 26 Apr 2017 11:57:38 +0000
reviewershiro
bugs1331047
milestone55.0a1
Bug 1331047: Fix another instance of a test relying on animating an non-existing pseudo-element. r?hiro MozReview-Commit-ID: 5ewF4tMPMl6
dom/animation/test/crashtests/1330190-2.html
--- a/dom/animation/test/crashtests/1330190-2.html
+++ b/dom/animation/test/crashtests/1330190-2.html
@@ -2,16 +2,17 @@
 <html class="reftest-wait">
 <head>
 <style>
 @keyframes anim {
 }
 
 #o_0:before {
   animation: anim 10s;
+  content: " ";
 }
 </style>
 <meta charset="UTF-8">
 <script>
 function boom(){
   function getPseudoElement() {
     var anim = document.getAnimations()[0];
     anim.cancel();