[Bug 22853] New: Little confused by example "4.8.1.1.16"

https://www.w3.org/Bugs/Public/show_bug.cgi?id=22853

            Bug ID: 22853
           Summary: Little confused by example "4.8.1.1.16"
    Classification: Unclassified
           Product: HTML WG
           Version: unspecified
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: normal
          Priority: P2
         Component: HTML5 spec
          Assignee: dave.null@w3.org
          Reporter: david100@sympatico.ca
        QA Contact: public-html-bugzilla@w3.org
                CC: mike@w3.org, public-html-admin@w3.org,
                    public-html-wg-issue-tracking@w3.org

There are two separate code examples back to back with nothing in between.

==================

In this example, we have a link pointing to a site's home page, the link
contains a house icon image and the text "home". The image has an empty alt
text. Where images are used in this way, it would also appropriate to add the
image using CSS 

  <a href="home.html"><img src="home.gif" width="15" height="15"
alt="">Home</a>
  #home:before
  { 
  content: url(home.png);
  }=
  <a href="home.html" id="home">Home</a>

==============
Perhaps rearrange like this:

In this example, we have a link pointing to a site's home page, the link
contains a house icon image and the text "home". The image has an empty alt
text. 

  <a href="home.html"><img src="home.gif" width="15" height="15"
alt="">Home</a>

Where images are used in this way, it would also appropriate to add the image
using CSS.

 #home:before
  { 
  content: url(home.png);
  }=
  <a href="home.html" id="home">Home</a>

=======================

*Also note that period is missing from end of sentence:
...it would also appropriate to add the image using CSS

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Received on Thursday, 1 August 2013 16:37:41 UTC