Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add <ins> and <del> elements #1435

Merged
merged 8 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions features/del.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: <del>
description: The `<del>` element element represents a range of text that has been deleted from a document, usually rendered as strikethrough.
spec: https://html.spec.whatwg.org/multipage/edits.html#the-del-element
group: html-elements
compat_features:
- api.HTMLModElement
- api.HTMLModElement.cite
- api.HTMLModElement.dateTime
- html.elements.del
- html.elements.del.cite
- html.elements.del.datetime
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,3 @@ compat_features:
- html.elements.del
- html.elements.del.cite
- html.elements.del.datetime
- html.elements.ins
- html.elements.ins.cite
- html.elements.ins.datetime
17 changes: 0 additions & 17 deletions features/draft/html-elements/del.yml

This file was deleted.

13 changes: 13 additions & 0 deletions features/ins.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: <ins>
description: The `<ins>` element element represents a range of text that has been inserted into a document, usually rendered with an underline.
spec: https://html.spec.whatwg.org/multipage/edits.html#the-ins-element
group: html-elements
compat_features:
# TODO - Removed until #1173 is resolved, these APIs are currently listed
# in <del> to prevent the error.
# - api.HTMLModElement
# - api.HTMLModElement.cite
# - api.HTMLModElement.dateTime
- html.elements.ins
- html.elements.ins.cite
- html.elements.ins.datetime
19 changes: 19 additions & 0 deletions features/ins.yml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated from: ins.yml
# Do not edit this file by hand. Edit the source file instead!

status:
baseline: high
baseline_low_date: 2015-07-29
baseline_high_date: 2018-01-29
support:
chrome: "1"
chrome_android: "18"
edge: "12"
firefox: "1"
firefox_android: "4"
safari: ≤4
safari_ios: ≤3.2
compat_features:
- html.elements.ins
- html.elements.ins.cite
- html.elements.ins.datetime