button-visibility-1.html (371B)
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 visibility: hidden; 11 will-change: transform; 12 } 13 14 .child { 15 visibility: visible; 16 } 17 </style> 18 </head> 19 20 <body> 21 <button class="parent"> 22 <span class="child">foo</span> 23 </button> 24 </body> 25 26 </html>