ins elementcite - Link to the source of the edit to provide additional information.
datetime - Date and (optionally) time of the change.aria-* attributes
applicable to the default or allowed roles.
del elementcite - Link to the source of the edit to provide additional information.
datetime - Date and (optionally) time of the edit.
aria-* attributes
applicable to the default or allowed roles.
ins and <{del}> elementscite attribute may be used to specify the
address of a document that explains the change. When that document is long, for instance the
minutes of a meeting, authors are encouraged to include a fragment pointing to the
specific part of that document that discusses the change.
If the <{edits/cite}> attribute is present, it must be a
valid URL potentially surrounded by spaces that explains the change. To obtain the
corresponding citation link, the value of the attribute must be parsed relative to the
element's node document. User agents may allow users to follow such citation links, but
they are primarily intended for private use (e.g., by server-side scripts collecting statistics
about a site's use of quotations), not for readers.
The datetime attribute may be used to specify
the time and date of the change.
If present, the datetime attribute's value must be a
valid date string with optional time.
User agents must parse the datetime attribute according
to the parse a date or time string algorithm. If that doesn't return a date or a global date and time,
then the modification has no associated timestamp (the value is non-conforming; it is not a
valid date string with optional time). Otherwise, the modification is marked as
having been made at the given date or global date and time. If the given value is a global date and time then user agents should use the associated
time-zone offset information to determine which time zone to present the given datetime in.
This value may be shown to the user, but it is primarily intended for private use.
The <{ins}> and <{del}> elements must implement the {{HTMLModElement}} interface:
interface HTMLModElement : HTMLElement {
attribute DOMString cite;
attribute DOMString dateTime;
};
The cite IDL attribute must reflect
the element's <{edits/cite}> content attribute. The dateTime IDL attribute must reflect the
element's <{edits/datetime}> content attribute.
ins and <{del}> elements do not affect paragraphing, it is possible, in some cases where paragraphs are implied (without explicit <{p}> elements), for an
ins or <{del}> element to span both an entire paragraph or other
non-phrasing content elements and part of another paragraph. For example:
This is a paragraph that was inserted.
This is another paragraph whose first sentence was inserted at the same time as the paragraph above. This is a second sentence, which was there all along.ins or <{del}> element (though this is very confusing, and not considered
good practice):
This second paragraph was inserted.
This sentence was inserted too. This is the third paragraph in this example.ins or <{del}> element. You instead have to use one (or two) p
element(s) and two ins or <{del}> elements, as for example:
This is the first paragraph. This sentence was deleted.
This sentence was deleted too. That sentence needed a separate <del> element.
ins or
<{del}> elements that cross implied paragraphs
boundaries.
ol and <{ul}> elements do not allow
ins and <{del}> elements as children. Lists always represent all their
items, including items that would otherwise have been marked as deleted.
To indicate that an item is inserted or deleted, an ins or del
element can be wrapped around the contents of the <{li}> element. To indicate that an
item has been replaced by another, a single <{li}> element can have one or more
<{del}> elements followed by one or more <{ins}> elements.
ins and <{del}> elements, so indicating edits to a
table can be difficult.
To indicate that an entire row or an entire column has been added or removed, the entire
contents of each cell in that row or column can be wrapped in ins or del
elements (respectively).
| Game name | Game publisher | Verdict |
|---|---|---|
| Diablo 2 | Blizzard | 8/10 |
| Portal | Valve | 9/10 |
| Portal 2 | Valve | 10/10 |
| Game name | Game publisher | |
|---|---|---|
| Diablo 2 | Blizzard | |
| Portal | Valve | |
| Portal 2 | Valve |