test.html 886 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. /* Page is expected to be exactly 800x600 */
  6. html, body {
  7. width: 800px;
  8. height: 600px;
  9. margin: 0;
  10. overflow: hidden;
  11. display: flex;
  12. flex-flow: row nowrap;
  13. justify-content: space-around;
  14. align-items: center;
  15. }
  16. .box {
  17. width: 256px;
  18. height: 256px;
  19. border-radius: 48px;
  20. background-color: cornflowerblue;
  21. }
  22. .box.rounding-0 {
  23. -electron-corner-smoothing: 0%;
  24. }
  25. .box.rounding-system-ui {
  26. -electron-corner-smoothing: system-ui;
  27. }
  28. .box.rounding-100 {
  29. -electron-corner-smoothing: 100%;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div class="box rounding-0"></div>
  35. <div class="box rounding-system-ui"></div>
  36. <div class="box rounding-100"></div>
  37. </body>
  38. </html>