Files
openide/plugins/htmltools/testData/highlighting/DeprecatedAttributes.html
Piotr Tomiak d609b1343b WEB-65180 WEB-64898 MDN: support syntax highligthing in code blocks; update MDN data
GitOrigin-RevId: ab308da8c216ac5a05feffdc436aab16702a6e3a
2024-01-23 13:09:54 +00:00

17 lines
523 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Test page</title>
</head>
<body>
<table>
<tr>
<td <warning descr="Obsolete attribute">width</warning>="10px">Some content</td>
</tr>
</table>
<h2 <warning descr="Obsolete attribute">align</warning>="center">Assignment 1</h2>
<div id="hello" <warning descr="Obsolete attribute">align</warning>="left"></div>
<a <warning descr="Obsolete attribute">charset</warning>="Big5" download="">hello</a>
<img src="http://foo" onError="Big5">
<img src="http://foo" onerror="Big5">
</body>