button-visibility-1-ref.html (345B)
1 <html> 2 3 <head> 4 <meta charset="utf-8"> 5 <title>Test for bug 1732921</title> 6 <style> 7 .parent { 8 border: 0px; 9 background: none; 10 will-change: transform; 11 } 12 13 .child { 14 visibility: visible; 15 } 16 </style> 17 </head> 18 19 <body> 20 <button class="parent"> 21 <span class="child">foo</span> 22 </button> 23 </body> 24 25 </html>