aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/bad-line-ends.html
blob: f5fc543c9cc955dcb534775bfa19a722f470c5db (plain) (blame)
1
<html>
  <head>
    <style>
      p {
        color: white;
      }
      p.blue {
        background-color: blue;
      }
      p.red {
        background-color: red;
      }
    </style>
  </head>
  <body>
    <p class="blue">
      I am a paragraph. My background color is blue.
    </p>
    <p class="red">
      I am a paragraph. My background color is red.
    </p>
  </body>
</html>