chromium/third_party/blink/web_tests/fast/body-propagation/overflow/003-declarative.xhtml

<!DOCTYPE html>
<html xmlns="urn:foo:bogus">
 <head xmlns="http://www.w3.org/1999/xhtml">
  <title>overflow on body should not propagate to the viewport when root is not html:html</title>
  <style>
   html { overflow:visible; }
   body { overflow:scroll; width:10em; height:10em; border:thin solid; color:navy; }
   .filler { color:gray; }
  </style>
 </head>
 <body xmlns="http://www.w3.org/1999/xhtml">
  <p>There should be scrollbars for this box -- not for the viewport.</p>
  <p class="filler">This is filler text.</p>
  <p class="filler">This is filler text.</p>
  <p class="filler">This is filler text.</p>
  <p class="filler">This is filler text.</p>
 </body>
</html>