2.1.111 [W3C-HTML52] Section 10.3.4. Phrasing content

V0333: The blink element does not have a defined default style

The specification states:

 10.3.4 Phrasing content
     ...
     blink { text-decoration: blink; }

EdgeHTML Mode

The blink element does not have a defined default style.

V0335: The size attribute of the font element sets the font-size property to the wrong value

The specification states:

 10.3.4 Phrasing content
     ...
     When a font element has a size attribute, the user agent is expected to use the 
     following steps, known as the rules for parsing a legacy font size, to treat the 
     attribute as a presentational hint setting the element's 'font-size' property:
         ...
         12. Set 'font-size' to the keyword corresponding to the value of value according 
             to the following table:
  
                 value | 'font-size' keyword | notes
                 -----------------------------------
                 1     | x-small             |
                 2     | small               |
                 3     | medium              |
                 4     | large               |
                 5     | x-large             |
                 6     | xx-large            |
                 7     | xxx-large           | see below
  
             The 'xxx-large' value is a non-CSS value used here to indicate a font size 
             50% larger than 'xx-large'.

EdgeHTML Mode

The size attribute of the font element sets the font-size property to the wrong value:

    value | 'font-size' keyword | notes

    -----------------------------------

    1     | xx-small            |

    2     | x-small             |

    3     | small               |

    4     | medium              |

    5     | large               |

    6     | x-large             |

    7     | xx-large            |

V0332: The abbr and acronym elements do not set text-decoration: dotted underline default styles

The specification states:

 10.3.4 Phrasing content
     ...
     abbr[title], acronym[title] { text-decoration: dotted underline; }

EdgeHTML Mode

The abbr and acronym elements do not set text-decoration: dotted underline in default styles.

V0325: The b and strong elements set font-weight: bold instead of font-weight: bolder

The specification states:

 10.3.4 Phrasing content
     ...
     b, strong { font-weight: bolder; }

EdgeHTML Mode

The b and strong elements set font-weight: bold instead of font-weight: bolder.

V0326: The big element does not set font-size: larger in the default styles

The specification states:

 10.3.4 Phrasing content
     ...
     big { font-size: larger; }

EdgeHTML Mode

The big element does not set font-size: larger in the default styles.

V0331: Styles are not set for the :link and :visited states in the default styles

The specification states:

 10.3.4 Phrasing content
     ...
     :link { color: #0000EE; }
     :visited { color: #551A8B; }
     ...
     :link, :visited { text-decoration: underline; ... }
     a:link[rel~=help], a:visited[rel~=help],
     area:link[rel~=help], area:visited[rel~=help] { cursor: help; }

EdgeHTML Mode

The following styles are not set for the :link and :visited states in the default styles:

    :link { color: #0000EE; }

    :visited { color: #551A8B; }

    :link, :visited { text-decoration: underline; ... }

    a:link[rel~=help], a:visited[rel~=help],

    area:link[rel~=help], area:visited[rel~=help] { cursor: help; }

V0327: The elements small, sub, and sup do not set font-size: smaller in the default styles

The specification states:

 10.3.4 Phrasing content
     ...
     small { font-size: smaller; }
     ...
     sub, sup { line-height: normal; font-size: smaller; }

EdgeHTML Mode

The elements small, sub, and sup do not set font-size: smaller in the default styles.

V0328: The elements sub and sup do not set line-height in the default styles

The specification states:

 10.3.4 Phrasing content
     ...
     sub, sup { line-height: normal; font-size: smaller; }

EdgeHTML Mode

The elements sub and sup do not set line-height in the default styles.

V0334: The br, nobr, and wbr elements do not set any default styles

The specification states:

 10.3.4 Phrasing content
     ...
     br { display-outside: newline; } /* this also has bidi implications */
     nobr { white-space: nowrap; }
     wbr { display-outside: break-opportunity; } /* this also has bidi implications */
     nobr wbr { white-space: normal; }
     ...
     br[clear=left i] { clear: left; }
     br[clear=right i] { clear: right; }
     br[clear=all i], br[clear=both i] { clear: both; }

EdgeHTML Mode

The br, nobr, and wbr elements do not set any default styles.