https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ba2d3606cd94cb31f5832db1aa35714601e70db4 authored by Ian Kilpatrick on 16 March 2018, 20:51:08 UTC
[shapes] Remove shape-outside avoiding behaviour for new-FCs/replaced.
Tip revision: ba2d360
send_report.html
<!DOCTYPE html>
<html>
  <head>
    <title>Clear-Site-Data</title>
    <script src="test_utils.sub.js"></script>
  </head>
  <body>
    <script>
      /**
       * A map between a datatype name and whether it is empty.
       * @property Object.<string, boolean>
       */
      var report = {};

      Promise.all(TestUtils.DATATYPES.map(function(datatype) {
        return datatype.isEmpty().then(function(isEmpty) {
          report[datatype.name] = isEmpty;
        });
      })).then(function() {
        window.top.postMessage(report, "*");
      });
    </script>
  </body>
</html>
back to top