DOM で font-weight プロパティにアクセスできません。
html =
(Ltrim
<html>
<head>
<style type="text/css">
#bar{
border: 1px solid black;
}
div {
font-weight: bold;
}
</style>
</head>
<body><div>foo</div><p id="bar">bar</p></body>
</html>
)
doc := ComObjCreate("HTMLfile")
doc.write(html)
msgbox % doc.styleSheets[0].rules[0].style.border ; "black 1px solid"
msgbox % doc.styleSheets[0].rules[1].style.font-weight ; nothing
msgbox % doc.styleSheets[0].rules[1].style["font-weight"] ; "[object]"
これは、こうあるべきなのだろうか?それとも、最後の 2 つのメッセージ ボックスに「太字」の値を表示する必要がありますか?