Errata

HTML5: The Missing Manual

Errata for HTML5: The Missing Manual

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Other Digital Version location 1016 of 13624
Section in Bold Discussing Character Encoding

I have two valuable pieces of input, the 2nd being most valuable. :)

I am reading HTML5 The Missing Manual on my Kindle. I am in the Bold Sections called Character Encoding and the Kindle says I am in Location 1016 of 13624.

This section explains how you need to format the meta tag within the html document as utf-8

in such as way as

<meta charset="utf-8" >

but if I remember correctly the W3C validator seems to prefer

<meta charset="utf-8" />

More importantly though is the following issue, which I believe clarification on would be incredibly valuable and helpful to readers:

Today is May 4th, 2013.

I recently had a problem with an HTML5 document getting extra warning regarding the utf-8 when using the validator html tool page.

I finally solved the problem.

The Notepad program on my Windows OS could not seem to solve the issue.

I discovered that Sublime Text 2 Editor allows me to save my index.html file with encoding in the saving options menu.

When I specifically select save with encoding as utf-8 without bom or no bom or no signature as some other web dev.s have called it, then upload the file to the server and test it on W3C validator again, the

warnings/error regarding the utf-8 go away! YAY!

Thank you so much for your time, and I really hope this piece of advice helps some other developers out there! :)

I discovered Sublime Text 2 Editor thanks to an instructor from the W3C website advertised seminar that is being held this summer about HTML5, and the instructor has a page that tells potential sign-ups what tools, resources and software he recommends that they have to get the most out of his course.

Although I can't afford the time or money for the course, I definitely appreciated his recommendation of Sublime Text Editor 2!

Thanks again for creating all of your incredible books!

I love them!

- Amber Nestor

Note from the Author or Editor:
Not errata but a suggestion I will incorporate in next edition.

Amber Nestor  May 04, 2013 
ePub Page 25-26
Varies based on text size in ePub

"Up to speed: How HTML5 Handles Obsolete Elements" Box (4th Paragraph)

"someone could build a browser from scratch" should be
"someone could build a web page from scratch"

It would be impressive to build a browser!

Anonymous  Oct 13, 2015 
ePub Page 43-44
Varies based on text size in ePub

In discussing the differences between <b> and <strong, and <i> and <em> an example is given along with a representation of the result. In the result the entire text is in italics not just the sections between <i> and <em> tags. This error is only seen in the epub version and is not in the pdf version of the book.

Anonymous  Oct 13, 2015 
ePub Page 58
Varies based on text size in ePub

Sample of output from the <time> element. Another example of an output that in the ePub that has been formatted in italics when there is in fact no default formatting applied to the HTML output for <time>. The ePub formatting needs changing to not show this sample in italics. This appears fine in the pdf version of the book.

Anonymous  Oct 20, 2015 
Printed Page 70
The HTML5 Outlining System

This is not really a mistake as it is an omission of information. The author might like to know that the h5o Chrome outliner bookmarklet provided by Google works perfectly well in Safari 5.x, on my Mac, and any other recent browser.

http://code.google.com/p/h5o/downloads/detail?name=outliner.0.5.0.62.html

Regards,

Daniel

Note from the Author or Editor:
Not errata but a suggestion I will incorporate in next edition.

Daniel Leavey  Apr 25, 2013 
Printed Page 108
Australia

Para beginning "All basic web forms.."

"At that point the server collects all the data that the user has entered and sends it back to the web server"

should that 5th word be BROWSER instead of SERVER?

J O'Loughlin  Sep 22, 2014 
Printed Page 137
TIP

Excuse my English. Link not found.

In the section "Using contenteditable to Edit an Element" (p. 136) there is a TIP (p. 137):
"Some browsers support a few built-in commands ...
To learn more ... see Opera's two-part article series at http://tinyurl.com/htmlEdit1 and http://tinyurl.com/htmlEdit2"
File not found.

Thanks,
Irene

Anonymous  Nov 02, 2014 
PDF Page 290
1st paragraph

calculates 35+10 properly, and returns 40.


Should be:


calculates 35+10 properly, and returns 45.

Toni Elias  Apr 27, 2014 
PDF Page 299
1st paragraph

It deals will images


Should be:


It deals with images

Toni Elias  Apr 27, 2014 
Printed Page 299
United States

Should read, "It deals [with] images..." rather than "It deals will images..."

Sterling Jenkins  Jun 10, 2014 
Other Digital Version 323
http://missingmanuals.com/cds/html5tmm/

Files for chap. 11 are missing from the Missing CD-ROM page: http://missingmanuals.com/cds/html5tmm/
Or aren't there any files for this chapter? (Then you should indicate that this is the case.)

Anonymous  May 26, 2012 
PDF Page 371
1st paragraph

The prime number search users web workers


Should be:


The prime number search uses web workers

Toni Elias  Apr 27, 2014 
PDF Page 377
5th paragraph

more important that providing


Should be:


more important than providing

Toni Elias  Apr 27, 2014 
Printed Page 448
1st and 2nd lines

<span> should be <p>.

Sang Woo Chi  May 14, 2016 
ePub Page 503-504
Variable based on font size.

Appendix A. Discussing the CSS for the "How the World Could End" page.

In discussing the Teaser and Byline classes contained within the Header class it says that the classes are applied to <span> tags in the HTML. Then a sample of the markup it shows the classes are actually applied to <p> elements. No <span> tags anywhere to be seen.

Anonymous  Oct 13, 2015 
ePub Page 527-529
Varies based on text size in ePub

Appendix B. Manipulating and Element

Changing the source of an image object. Code uses getElementById to initialize a variable called imgObject with a image object called dayImage.

In the next line it changes the source of the image using the javascript object variable but uses the variable name dayImage which is the element id value and not the variable name.

dayImage.src = "cloudy.jpg";

should be:

imgObject.src = "cloudy.jpg";

Anonymous  Oct 13, 2015 
Other Digital Version 4621
top


Hi, great book!

In the section "Linear Gradient" from Chapter 6, the syntax "from <corner>" doesn't seem to be consistent with the W3C specification at http://www.w3.org/TR/css3-images/#linear-gradients. For example, the supplied file "Gradients.html" displays incorrectly in Firefox v35 (see also https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient). The W3C syntax seems to only allow "to <corner>". Perhaps the specification changed?

Anonymous  Jan 19, 2015