4 out of 7 rated this helpful - Rate this topic

F12 developer tools console error messages

[This documentation is preliminary and is subject to change.]

The F12 developer tools console can report error and informational messages that occur during runtime. This article describes the error messages and offers suggestions for how to fix the errors.

Introduction

F12 tools console error messages provide codes that provide information about the error, for example, SEC7111 or HTML1114. These codes and messages appear in both the Console and Script tabs in F12 tools. For JavaScript programmers, these codes are thrown from Windows Internet Explorer. ActiveX and Browser extension developers can also send these errors and messages.

The tables later in this topic are broken into sections that include the code, the message, a description, and when appropriate, suggestions to fix the problem. While the descriptions in the table provide a starting point for debugging problems, the best way to get information is to visit online developer forums or the Internet Explorer developer center.

Security errors

These errors are in the form SEC7xxx, such as SEC7113. These reflect security conditions that Windows Internet Explorer 9 enforces, such as mixed content, and Tracking Protection.

CodeMessageDescriptionSuggested fix
SEC7111HTTPS security is compromised by [name of resource]Secure Hypertext Transfer Protocol (HTTPS) page also has unsecured (mixed) content. Do not include unsecured content on a HTTPS page
SEC7112Script from [URL] was blocked due to mime type mismatchThe HTTP response header for the JavaScript file that is specified by the URL has an "X-Content-Type-Options: nosniff "header, and did not have a content type declaration.Add the correct content type for the JavaScript file (such as text/javascript, application/javascript, and so on) See MIME-Handling Changes in Internet Explorer for more information and a full list of content types.
SEC7113CSS was ignored due to mime type mismatchAn imported style sheet was not used due to the wrong MIME type in the HTTP header. Ensure style sheet file is delivered with the proper HTTP response header, which includes a content type of text\css. See MIME-Handling Changes in Internet Explorer for more information.
SEC7114A download in this page was blocked by Tracking Protection.[URL provided here]User blocked script or content by using Tracking Protection.None - user initiated.
SEC7115:visited and :link styles can only differ by color. Some styles were not applied to :visited. More than one attribute, such as font or size, were changed by using the visited and link styles. Change only the color attribute.

 

Note  For websites in a users trusted security zone, Internet Explorer will not check the MIME type of a style sheet.

HTML codes

These codes are in the form of HTML1xxx, such as HTML1115. They can specify errors or states that the developer might or might not be able to control.

CodeMessageDescriptionSuggested fix
HTML1112Codepage restart from [encoding] to  [encoding]A codepage was specified that was different than the server.Use same codepage as server to avoid message.
HTML1113Document mode restart from [mode] to [mode]The webpage requires a different document mode than the browser was currently set to.This message can occur when the user browses from another page, so it can be out of the developer's control.
HTML1114Codepage [codepage] from [domain] overrides conflicting codepage [codepage] from [domain]Conflicting codepages specified in the http header and markup for a website.Fix codepage conflict.
HTML1115X-UA-Compatible META tag ("[META tag]") ignored because document mode is already finalizedTypically the "META" tag was placed after a "Script" or "Style" declaration, which fixed the document mode for the page.Move the X-UA-Compatible META tag as early in the header as possible. A good practice is to put it immediately after the "<title>" and charset value.
HTML1116X-UA-Compatible META tag ("[META tag]") ignored because of earlier X-UA-Compatible META tag ("[META tag]")There are more than one "X-UA-Compatible""META" tag in the "<head>" section of the source code.Remove all but one "X-UA-Compatible META" tag, and ensure it is as early in the header as possible. A good practice is to put it immediately after the "<title>" and charset value.
HTML1200[domain] is on the Internet Explorer 9 Compatibility View List ('[path to local Compatibility View List]'). The current website is listed on Internet Explorer's internal list. Website developers can follow guidelines to remove their site from the Compatibility View list. The list is periodically updated by Microsoft, so changes can be downloaded and reflected.
HTML1201[domain] is a website you've added to Compatibility View. The user has clicked the Compatibility View button for the current website or added it through the Compatibility View settings.User initiated.
HTML1202[domain] is running in Compatibility View because "Display intranet sites in Compatibility View" is checked.The user has selected the Display intranet sites in Compatibility View check box in the Compatibility View settings. User needs to press <Alt> + T, click Compatibility View settings, and then clear the Display intranet sites in Compatibility View check box.
HTML1203[domain] has been configured to run in Compatibility View through Group Policy. The network administrator has specified that the webpage be run in Compatibility View. User needs to contact the network administrator.
HTML1204[domain] is running in Compatibility View because "Display all websites in Compatibility View" is checked. The user has selected the Display all websites in Compatibility View check box in the Compatibility View settings. User needs to press <Alt> + T, click Compatibility View settings, and then clear theDisplay all websites in Compatibility View check box.

 

CSS codes

These errors are in the form CSS31xx and are related to "Web Open Font Format (WOFF)", and "Embedded OpenType font (EOT)" source and host server problems.

CodeMessageDescriptionSuggested fix
CSS3111 @font-face encountered unknown errorAn unknown problem was encountered with the "Web Open Font Format (WOFF)", and "Embedded OpenType font (EOT)" of the Cascading Style Sheets (CSS) font.Check source of "WOFF" fonts. Try alternate font face or source to see if problem reproduces.
CSS3112@font-face failed WOFF integrity checkThe "Web Open Font Format (WOFF)" font is possibly corrupt, incomplete, or not the correct format.Check source of the fonts. Try known good font face or source to see if problem reproduces.
CSS3113@font-face mismatch between document origin and EOT root stringThe font cannot be used because the URL(rootstring) in the "Embedded OpenType font (EOT)" does not match the domain of the document using the font.The URL checksum in the "EOT" rootstring might be incorrect, indicating a corrupt or altered URL for the font. Ensure that the font is licensed or has permissions for the website where the fonts are being used.
CSS3114 @font-face failed OpenType embedding permission check. Permission must be Installable. The font-face does not have permissions to install with the current webpage.Obtain the correct permission or licenses for embedding the font.
CSS3115@font-face unable to load invalid OpenType font. The font-face is not valid for this use.Obtain the permission or licenses for the current and valid font-face.
CSS3116@font-face failed cross-origin request. No Access-Control-Allow-Origin header. The font might not be configured for cross-domain access.The font is not served from the same origin as the document. Ensure that the host serving the font allows the use of this font by using the "Access-Control-Allow-Origin"HTTP header.
CSS3117@font-face failed cross-origin request. Resource access is restricted.The "Access-Control-Allow-Origin" header might not be configured correctly or the font host might not allow this font to be used by your page.Ensure that correct permissions and a correctly configured HTTP response header that has cross-domain access origin for the host serving the fonts.

 

Scalable Vector Graphics (SVG) codes

F12 tools do not currently support extensive Scalable Vector Graphics (SVG) debugging, but several console messages are displayed to help debug SVG code.

CodeMessageDescriptionSuggested fix
SVG5601SVG Path data has incorrect format and could not be completely parsed. The SVG Path string is not formatted correctly, or contains unrecognized commands. Check format of commands.
SVG5602SVG Point list has incorrect format and could not be completely parsed. The list of points used for an element, such as a polyline, is not correctly formatted. Ensure that points are complete and correctly formatted for the users coordinate system.

 

Script codes

JavaScript runtime errors are also reported in F12 tools. These errors are in the form SCRIPT50xx, such as SCRIPT5001. These errors are documented on the Windows Scripting Host developer page.

XML codes

The F12 tools console can report XML codes. These errors are in the form of XML5xxx, such as XML5603. For more information about XML, see the XmlLite Reference.

CodeMessage
XML5001Applying Integrated XSLT Handling.
XML5601MX_E_MX
XML5602Unexpected end of input.
XML5603Unrecognized encoding.
XML5604Unable to switch the encoding.
XML5605Unrecognized input encoding signature.
XML5606WC_E_WC
XML5607Whitespace expected.
XML5608Semicolon expected.
XML5609Expected ">".
XML5610Quote character expected.
XML5611Expected "=".
XML5612The < character is not allowed in attributes values.
XML5613Hexadecimal digit expected.
XML5614Decimal digit expected.
XML5615Expected "[".
XML5616Expected "(".
XML5617Illegal XML character.
XML5618Illegal name character.
XML5619Incorrect document syntax.
XML5620Incorrect CDATA section syntax.
XML5621Incorrect comment syntax.
XML5622Incorrect conditional section syntax.
XML5623Incorrect ATTLIST declaration syntax.
XML5624Incorrect DOCTYPE declaration syntax.
XML5625Incorrect ELEMENT declaration syntax.
XML5626Incorrect ENTITY declaration syntax.
XML5627Incorrect NOTATION declaration syntax.
XML5628Expected "NDATA".
XML5629Expected "PUBLIC".
XML5630Expected "SYSTEM".
XML5631Invalid name.
XML5632Only one root element is allowed.
XML5633End-tag name does not match the corresponding start-tag name.
XML5634An attribute with the same name already exists on this element.
XML5635An XML declaration is only allowed at the beginning of the file.
XML5636Leading "xml".
XML5637Incorrect text declaration syntax.
XML5638Incorrect XML declaration syntax.
XML5639Incorrect encoding name syntax.
XML5640Incorrect public identifier syntax.
XML5641Parameter entity references are not allowed within markup declarations in an internal DTD subset.
XML5642The replacement text for parameter entity references used between markup declarations must itself contain a series of complete markup declarations.
XML5643A parsed entity must not contain a direct or indirect reference to itself.
XML5644The content of the specified entity is not well-formed.
XML5645The specified entity has not been declared.
XML5646Entity reference cannot contain the name of an unparsed entity.
XML5647Attribute values must not contain direct or indirect references to external entities.
XML5648Incorrect processing instruction syntax.
XML5649Incorrect system identifier syntax.
XML5650Expected a question mark (?).
XML5651The CDATA-section-close delimiter "]]>" must not be used in element content.
XML5652Not all chunks of data have been read.
XML5653DTD was found but is prohibited.
XML5654Found xml:space attribute with invalid value. Valid values are "preserve" or "default".
XML5655NC_E_NC
XML5656Illegal qualified name character.
XML5657Multiple colons ":" must not occur in a qualified name.
XML5658A colon ":" must not occur in a name.
XML5659Declared prefix.
XML5660The specified prefix has not been declared.
XML5661Non-default namespace declarations must not have an empty URI.
XML5662The "xml" prefix is reserved and must have the URI "http://www.w3.org/XML/1998/namespace".
XML5663The "xmlns" prefix is reserved for use by XML.
XML5664The xml namespace URI (http://www.w3.org/XML/1998/namespace) must only be assigned to the prefix "xml".
XML5665The xmlns namespace URI (http://www.w3.org/2000/xmlns/) is reserved and must not be used.
XML5666SC_E_SC
XML5667Exceeded maximum depth of nested elements.
XML5668Exceeded maximum number of entity expansions.
XML5669WR_E_WR
XML5670WR_E_NONWHITESPACE: writer: specified string is not whitespace.
XML5671WR_E_NSPREFIXDECLARED: writer: namespace prefix is already declared with a different namespace.
XML5672WR_E_NSPREFIXWITHEMPTYNSURI: writer: cannot use prefix with empty namespace URI.
XML5673WR_E_DUPLICATEATTRIBUTE: writer: duplicate attribute.
XML5674WR_E_XMLNSPREFIXDECLARATION: writer: can not redefine the xmlns prefix.
XML5675WR_E_XMLPREFIXDECLARATION: writer: xml prefix must have the http://www.w3.org/XML/1998/namespace URI.
XML5676WR_E_XMLURIDECLARATION: writer: xml namespace URI (http://www.w3.org/XML/1998/namespace) must be assigned only to prefix "xml".
XML5677WR_E_XMLNSURIDECLARATION: writer: xmlns namespace URI (http://www.w3.org/2000/xmlns/) is reserved and must not be used.
XML5678WR_E_NAMESPACEUNDECLARED: writer: namespace is not declared.
XML5679WR_E_INVALIDXMLSPACE: writer: invalid value of xml:space attribute (allowed values are "default" and "preserve").
XML5680WR_E_INVALIDACTION: writer: performing the requested action would result in invalid XML document.
XML5681WR_E_INVALIDSURROGATEPAIR: writer: input contains invalid or incomplete surrogate pair.
XML5682Unexpected character in character entity. Expected a decimal digit.
XML5683Unexpected character in character entity. Expected a hexadecimal digit.
XML5684The Unicode value of the specified character entity is invalid.
XML5685Invalid encoding.
XML5686Unspecified XML error.

 

 

 

Build date: 2/15/2012

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ