Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am sending the following string to UIWebView:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
<img src="mysrc"></img>
</html>

However, when I read it with:

[templateWebView stringByEvaluatingJavaScriptFromString:@"document.documentElement.outerHTML"]

The result is:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
<img src="mysrc">
</html>

With no end tag to </img>

How can I make UIWebView not to change the HTML tags?

share|improve this question
I don't fully understand your question - I think you didn't post the original string you were sending. – lxt Jan 1 at 11:27
I edited the question – Odelya Jan 1 at 11:32
I don't think this is possible, even using private methods. WebKit discards "superfluous" closing tags and never lets them back. – H2CO3 Jan 2 at 17:10
Did you copy/paste the exact value in the "result", or did you just remove the ending tag manually to match what you see in the debugger? In other words, are you sure that the third line is <img src="mysrc">, not <img src="mysrc"/> (with a slash)? – dasblinkenlight Jan 2 at 17:12
Yes I am sure about it – Odelya Jan 2 at 18:53

1 Answer

IMG is a self closing tag, so it should be:

<img src="mysrc" />

To be absolutely compliant with the standard it should also have ALT property defined:

<img src="mysrc" alt="something" />

That might be the cause of the parsing error.

share|improve this answer
in HTML img doesn't need to be closed – Odelya Jan 6 at 8:58
It doesn't need to be closed explicitly with a closing tag </img>, but it does need to end with a /> as I described. w3.org/TR/xhtml-media-types/#C_2 – manecosta Jan 7 at 10:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.