Files
openide/plugins/htmltools/testData/highlighting/DeprecatedAttributes.html
Piotr Tomiak b2652db4a7 [mdn] WEB-72460 Update test files; add a test suite to run all the affected doc tests.
(cherry picked from commit 7c4aaa761397c4fee13d0e35d25d07910e44675b)

IJ-CR-162639

GitOrigin-RevId: 5dd28c2cdd847e32084823c21c092bcd2b658f8e
2025-05-26 21:37:22 +00:00

17 lines
615 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" <warning descr="Obsolete attribute">onError</warning>="Big5">
<img src="http://foo" <warning descr="Obsolete attribute">onerror</warning>="Big5">
</body>