encoding of script tags in html

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Andy Fish

    encoding of script tags in html

    hi,

    this is more an html parsing question than an XML question but I think it's
    the kind of thing that folks in an XML newsgroup would be more likely to
    help with, so please excuse me if it's a little off topic. please be aware
    that I am primarily talking about HTML rather than XHTML but I would also
    like to understand how XHTML works for when I prepare to convert the app to
    XHTML.

    I have recently discovered that this:

    <script>var x='</script>';</script>

    is not valid HTML - the fact that there is an end script tag in quotes
    causes the parser to stop recognising the script. initially my reaction was
    that this is not a surprise because I had failed to HTML encode the script
    contents, so my second attempt was this:

    <script>var x='&lt;/script&gt;';</script>

    however this it DOES NOT WORK - the variable ends up containing the text
    "&lt;/script&gt;"

    can someone point me at part of the w3c specification that states how script
    tags are parsed differently to other tags in HTML.

    interestingly i have also discovered that this:

    <script>if (3<5);</script>

    IS valid html and seems even to be valid XHTML even though it is not valid
    XML

    Andy


  • Johannes Koch

    #2
    Re: encoding of script tags in html

    Andy Fish schrieb:
    <script>var x='</script>';</script>
    Escape the '/' in your script code:

    var x='<\/script>';
    --
    Johannes Koch
    In te domine speravi; non confundar in aeternum.
    (Te Deum, 4th cent.)

    Comment

    • Martin Honnen

      #3
      Re: encoding of script tags in html

      Andy Fish wrote:
      can someone point me at part of the w3c specification that states how script
      tags are parsed differently to other tags in HTML.
      See http://www.w3.org/TR/html4/types.html#type-script:
      "Please note that script data that is element content may not contain
      character references, but script data that is the value of an attribute
      may contain them."
      and http://www.w3.org/TR/html4/appendix/...ecifying-data:
      "The DTD defines script and style data to be CDATA for both element
      content and attribute values. SGML rules do not allow character
      references in CDATA element content but do allow them in CDATA attribute
      values."
      interestingly i have also discovered that this:
      >
      <script>if (3<5);</script>
      >
      IS valid html and seems even to be valid XHTML even though it is not valid
      XML
      That snippet is not well-formed so it can't be valid XML or XHTML as it
      is not even XML.


      --

      Martin Honnen

      Comment

      • Andy Fish

        #4
        Re: encoding of script tags in html

        thanks to both for the quick replies

        wow - what a minefield this has turned out to be !!

        i previously had just one server-side utility function to escape a string as
        a literal javascript string. now i realise i need to have 2 separate
        functions, one for when the javascript literal is to be placed inside an
        HTML attribute value (e.g. onclick="...") and a different one for when it is
        inside a script block, because one is CDATA and one is PCDATA

        Andy


        "Martin Honnen" <mahotrash@yaho o.dewrote in message
        news:4843e357$0 $27438$9b4e6d93 @newsspool4.arc or-online.net...
        Andy Fish wrote:
        >
        >can someone point me at part of the w3c specification that states how
        >script tags are parsed differently to other tags in HTML.
        >
        See http://www.w3.org/TR/html4/types.html#type-script:
        "Please note that script data that is element content may not contain
        character references, but script data that is the value of an attribute
        may contain them."
        and http://www.w3.org/TR/html4/appendix/...ecifying-data:
        "The DTD defines script and style data to be CDATA for both element
        content and attribute values. SGML rules do not allow character references
        in CDATA element content but do allow them in CDATA attribute values."
        >
        >interestingl y i have also discovered that this:
        >>
        ><script>if (3<5);</script>
        >>
        >IS valid html and seems even to be valid XHTML even though it is not
        >valid XML
        >
        That snippet is not well-formed so it can't be valid XML or XHTML as it is
        not even XML.
        >
        >
        --
        >
        Martin Honnen
        http://JavaScript.FAQTs.com/

        Comment

        • Peter Flynn

          #5
          Re: encoding of script tags in html

          Martin Honnen wrote:
          Andy Fish wrote:
          >
          >can someone point me at part of the w3c specification that states how
          >script tags are parsed differently to other tags in HTML.
          [...]
          >interestingl y i have also discovered that this:
          >>
          ><script>if (3<5);</script>
          >>
          >IS valid html and seems even to be valid XHTML even though it is not
          >valid XML
          >
          That snippet is not well-formed so it can't be valid XML or XHTML as it
          is not even XML.
          It is, however, valid HTML (SGML): the < sign is valid unescaped in
          CDATA declared content (and would be valid elsewhere, as the digit
          following it cannot be taken to be the beginning of an element type
          name).
          wow - what a minefield this has turned out to be !!
          Don't guess ("seems to be..."). Install a standalone validating parser
          that handles both SGML and XML (eg onsgmls, part of SP), and copies of
          the relevant DTDs; or a schema validator and copies of the schemas,
          and test any files you create for validity. A good XML editor will do
          this for you anyway.

          ///Peter
          --
          XML FAQ: http://xml.silmaril.ie/

          Comment

          Working...