<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Out of Order HTML Phrasing"
   href="https://bugs.webkit.org/show_bug.cgi?id=155797">155797</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Out of Order HTML Phrasing
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>WebKit
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>Safari 9
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>All
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>All
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>Normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P2
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>Page Loading
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>webkit-unassigned&#64;lists.webkit.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>miwagner1&#64;icloud.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>beidson&#64;apple.com
          </td>
        </tr></table>
      <p>
        <div>
        <pre>Html is not being interpreted in the correct order?

All javascript is ran first before the rest of the content.

Works as intended in Firefox.

A Simple example of blocking javascript.

&lt;!DOCTYPE html&gt;

&lt;html lang=&quot;en&quot;&gt;
    &lt;head&gt;
        &lt;meta charset=&quot;utf-8&quot; /&gt;
        &lt;title&gt;Chapter 1, Example 2&lt;/title&gt;
    &lt;/head&gt;
    &lt;body bgcolor=&quot;white&quot;&gt;
        &lt;p&gt;Paragraph 1&lt;/p&gt;
        &lt;script&gt;
            // script block 1
            alert(&quot;First Script Block&quot;);
        &lt;/script&gt;
        &lt;p&gt;Paragraph 2&lt;/p&gt;
        &lt;script&gt;
            // script block 2
            alert(&quot;Seccond Script Block&quot;);
        &lt;/script&gt;
        &lt;p&gt;Paragraph 3&lt;/p&gt;
    &lt;/body&gt;
&lt;/html&gt;</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>