[Webkit-unassigned] [Bug 155797] New: Out of Order HTML Phrasing

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Mar 23 10:01:43 PDT 2016


https://bugs.webkit.org/show_bug.cgi?id=155797

            Bug ID: 155797
           Summary: Out of Order HTML Phrasing
    Classification: Unclassified
           Product: WebKit
           Version: Safari 9
          Hardware: All
                OS: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Page Loading
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: miwagner1 at icloud.com
                CC: beidson at apple.com

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.

<!DOCTYPE html>

<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>Chapter 1, Example 2</title>
    </head>
    <body bgcolor="white">
        <p>Paragraph 1</p>
        <script>
            // script block 1
            alert("First Script Block");
        </script>
        <p>Paragraph 2</p>
        <script>
            // script block 2
            alert("Seccond Script Block");
        </script>
        <p>Paragraph 3</p>
    </body>
</html>

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160323/eae07227/attachment.html>


More information about the webkit-unassigned mailing list