Skip to content

Commit

Permalink
acronym support
Browse files Browse the repository at this point in the history
  • Loading branch information
DCoder18 authored and hteumeuleu committed Feb 18, 2024
1 parent baa4430 commit e1b70ed
Show file tree
Hide file tree
Showing 2 changed files with 196 additions and 0 deletions.
167 changes: 167 additions & 0 deletions _features/html-acronym.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,167 @@
---
title: "<acronym> element"
description: "Represents an abbreviation or acronym."
category: html
last_test_date: "2024-01-03"
test_url: "/tests/html-acronym.html"
test_results_url: "https://testi.at/proj/ayebhgpxu58yce2bhd"
stats: {
apple-mail: {
macos: {
"2024-01":"y"
},
ios: {
"2024-01":"y"
}
},
gmail: {
desktop-webmail: {
"2024-01":"y"
},
ios: {
"2024-01":"y"
},
android: {
"2024-01":"y"
},
mobile-webmail: {
"2024-01":"y"
}
},
orange: {
desktop-webmail: {
"2024-01":"u"
},
ios: {
"2024-01":"u"
},
android: {
"2024-01":"u"
}
},
outlook: {
windows: {
"2013":"n #1",
"2016":"n #1",
"2019":"n #1",
"2021":"n #1"
},
windows-mail: {
"2024-01":"n #1"
},
macos: {
"2024-01":"y"
},
outlook-com: {
"2024-01":"y"
},
ios: {
"2024-01":"y"
},
android: {
"2024-01":"y"
}
},
samsung-email: {
android: {
"2024-01":"y"
}
},
sfr: {
desktop-webmail: {
"2024-01":"u"
},
ios: {
"2024-01":"u"
},
android: {
"2024-01":"u"
}
},
thunderbird: {
macos: {
"2024-01":"y"
}
},
aol: {
desktop-webmail: {
"2024-01":"n"
},
ios: {
"2024-01":"n"
},
android: {
"2024-01":"n"
}
},
yahoo: {
desktop-webmail: {
"2024-01":"n"
},
ios: {
"2024-01":"n"
},
android: {
"2024-01":"n"
}
},
protonmail: {
desktop-webmail: {
"2024-01":"u"
},
ios: {
"2024-01":"u"
},
android: {
"2024-01":"u"
}
},
hey: {
desktop-webmail: {
"2024-01":"u"
}
},
mail-ru: {
desktop-webmail: {
"2024-01":"n"
}
},
fastmail: {
desktop-webmail: {
"2024-01": "u"
}
},
laposte: {
desktop-webmail: {
"2024-01": "u"
}
},
free-fr: {
desktop-webmail: {
"2024-01": "u"
}
},
t-online-de: {
desktop-webmail: {
"2024-01": "y"
}
},
gmx: {
desktop-webmail: {
"2024-01": "y"
}
},
web-de: {
desktop-webmail: {
"2024-01": "y"
}
}
}
notes_by_num: {
"1": "Buggy. `title` attribute is removed but keeps `<acronym>` tag."
}
links: {
"Can I use: &lt;acronym&gt;":"https://caniuse.com/?search=acronym",
"MDN: &lt;acronym&gt;":"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/acronym"
}
---
29 changes: 29 additions & 0 deletions tests/html-acronym.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head></head>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>&lt;acronym&gt; element</title>
</head>

<style>
acronym {
color: red;
}

acronym[title] {
color: green;
}
</style>
<body style="padding:30px;">

<h1>&lt;acronym&gt; element</h1>

<p>
The <acronym title="World Wide Web">WWW</acronym> is only a component of the Internet.
</p>

</body>
</html>

0 comments on commit e1b70ed

Please sign in to comment.