jsfmt.spec.js.snap 442 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`html-with-css-style.html 1`] = `
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <style>
  7. blink{
  8. display: none ;}
  9. </style>
  10. </head>
  11. <body></body>
  12. </html>
  13. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  14. <!DOCTYPE html>
  15. <html lang="en">
  16. <head>
  17. <style>
  18. blink {
  19. display: none;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. </body>
  25. </html>
  26. `;