質問編集履歴

2

文書の補足

2020/03/01 23:55

投稿

makosankibu
makosankibu

スコア289

test CHANGED
File without changes
test CHANGED
@@ -23,6 +23,8 @@
23
23
  どうしたら正しく、非推奨、廃止になったものについて検証でwarningを出すことができるでしょうか。
24
24
 
25
25
  あるいは、簡単な置き換え方法、eclipseのプラグインがあったら教えてほしいです。
26
+
27
+ 画像はhtmlファイルですが、実際はjspを使用しています。
26
28
 
27
29
 
28
30
 

1

回答を得られやすくするための追記

2020/03/01 23:55

投稿

makosankibu
makosankibu

スコア289

test CHANGED
File without changes
test CHANGED
@@ -23,3 +23,151 @@
23
23
  どうしたら正しく、非推奨、廃止になったものについて検証でwarningを出すことができるでしょうか。
24
24
 
25
25
  あるいは、簡単な置き換え方法、eclipseのプラグインがあったら教えてほしいです。
26
+
27
+
28
+
29
+ 追記~~
30
+
31
+ [HTML5で廃止、非推奨をまとめたサイト](https://www.tagindex.com/html5/basic/abolished.html)がありましたので、参考にeclipseに書き込んでみました。
32
+
33
+ 以下の画像を参照ください。
34
+
35
+
36
+
37
+ ![問題_2](791cbd4b694831f60217009026a60db8.png)
38
+
39
+
40
+
41
+ 一応コードも載せときますので、ご確認ください。
42
+
43
+
44
+
45
+ ```html
46
+
47
+ <!DOCTYPE HTML>
48
+
49
+ <html version="">
50
+
51
+ <head profile="">
52
+
53
+ <title>test</title>
54
+
55
+ </head>
56
+
57
+ <body background="" bgcolor="" text="" link="" vlink="" alink="">
58
+
59
+ <!-- 廃止タグ -->
60
+
61
+ <acronym></acronym>
62
+
63
+ <applet></applet>
64
+
65
+ <basefont></basefont>
66
+
67
+ <bgsound></bgsound>
68
+
69
+ <big></big>
70
+
71
+ <blink></blink>
72
+
73
+ <center></center>
74
+
75
+ <dir></dir>
76
+
77
+ <font></font>
78
+
79
+ <frame></frame>
80
+
81
+ <frameset></frameset>
82
+
83
+ <isindex></isindex>
84
+
85
+ <marquee></marquee>
86
+
87
+ <nobr></nobr>
88
+
89
+ <embed><noembed></noembed></embed> <!-- noembedが廃止タグ -->
90
+
91
+ <noframes></noframes>
92
+
93
+ <strike></strike>
94
+
95
+ <tt></tt>
96
+
97
+ <!-- /廃止タグ -->
98
+
99
+
100
+
101
+ <a charset="" shape="" coords=""></a>
102
+
103
+ <map><area nohref=""></area></map>
104
+
105
+ <br clear="none"/>
106
+
107
+ <table width="" height="" summary="" frame="" rules="" cellspacing="" cellpadding="" align="" bgcolor="">
108
+
109
+ <caption align="top"></caption>
110
+
111
+ <colgroup width="" align="center" valign="middle" char="" charoff="">
112
+
113
+ <col width="" align="center" valign="middle" char="" charoff=""></col>
114
+
115
+ </colgroup>
116
+
117
+ <thead align="center" valign="middle" char="" charoff=""></thead>
118
+
119
+ <tbody align="center" valign="middle" char="" charoff="">
120
+
121
+ <tr align="center" valign="middle" char="" charoff="" bgcolor="">
122
+
123
+ <th align="center" valign="middle" char="" charoff="" axis="" width="" height="" bgcolor="" nowrap="nowrap"></th>
124
+
125
+ <td align="center" valign="middle" char="" charoff="" abbr="" scope="col" axis="" width="" height="" bgcolor="" nowrap="nowrap"></td>
126
+
127
+ </tr>
128
+
129
+ </tbody>
130
+
131
+ <tfoot align="center" valign="middle" char="" charoff=""></tfoot>
132
+
133
+ </table>
134
+
135
+ <div align="center"></div>
136
+
137
+ <dl compact="compact"></dl>
138
+
139
+ <form accept=""></form>
140
+
141
+ <h1 align="center"></h1><h2 align="center"></h2><h3 align="center"></h3><h4 align="center"></h4><h5 align="center"></h5><h6 align="center"></h6>
142
+
143
+ <hr size="" width="" align="center" noshade="noshade"/>
144
+
145
+ <iframe longdesc="" scrolling="" frameborder="" marginwidth="" marginheight="" align="center"></iframe>
146
+
147
+ <img longdesc="" name="" align="top" border="" hspace="" vspace="" />
148
+
149
+ <input align="" usemap="" ismap="" />
150
+
151
+ <fieldset><legend></legend></fieldset>
152
+
153
+ <ul type="disc" compact="compact">
154
+
155
+ <li type="disc"></li>
156
+
157
+ </ul>
158
+
159
+ <ol compact="compact"></ol>
160
+
161
+ <p align="center"></p>
162
+
163
+ <object><param valuetype="data" type=".text"/></object>
164
+
165
+ <pre width=""></pre>
166
+
167
+ </body>
168
+
169
+ </html>
170
+
171
+
172
+
173
+ ```