ジョークRFCなるものがあるんですって
本を読んでて知った。ジョーク RFCに日本語訳リンクが載っています。
RFCは割と真面目な団体と思ってたんですが、そうでもないんですね。
「418 I'm a teapot」ってなかなか正気の沙汰ではないw
def test_chop assert_equal(-1, chop(3, [])) assert_equal(-1, chop(3, [1])) assert_equal(0, chop(1, [1])) # assert_equal(0, chop(1, [1, 3, 5])) assert_equal(1, chop(3, [1, 3, 5])) assert_equal(2, chop(5, [1, 3, 5])) assert_equal(-1, chop(0, [1, 3, 5])) assert_equal(-1, chop(2, [1, 3, 5])) assert_equal(-1, chop(4, [1, 3, 5])) assert_equal(-1, chop(6, [1, 3, 5])) # assert_equal(0, chop(1, [1, 3, 5, 7])) assert_equal(1, chop(3, [1, 3, 5, 7])) assert_equal(2, chop(5, [1, 3, 5, 7])) assert_equal(3, chop(7, [1, 3, 5, 7])) assert_equal(-1, chop(0, [1, 3, 5, 7])) assert_equal(-1, chop(2, [1, 3, 5, 7])) assert_equal(-1, chop(4, [1, 3, 5, 7])) assert_equal(-1, chop(6, [1, 3, 5, 7])) assert_equal(-1, chop(8, [1, 3, 5, 7])) end
<a href="#" id="a"> <img id="img" src="http://example.com/example.jpg"/> </a>
alert("aタグのdisplay属性の値:" + $("a").style.display); alert("imgタグのdisplay属性の値:" + $("img").style.display); function $(id){ return document.getElementById(id); }
aタグのdisplay属性の値 | imgタグのdisplay属性の値 | |
---|---|---|
IE7 | 値なし | 値なし |
Firefox 3.6.8 | 値なし | 値なし |
Google Chrome 8.0 | 値なし | 値なし |
Opera 11.00 | 値なし | 値なし |
<a href="#" id="a" style="display:block;"> <img id="img" src="http://example.com/example.jpg"/> </a>
//aタグのdisplay属性をblockにしてからimgタグのdisplay属性を確認 $("a").style.display = "block"; alert("imgタグのdisplay属性の値:" + $("img").style.display); function $(id){ return document.getElementById(id); }
<a href="#" id="a" style="display:none;"> <!-- display:none; --> <img id="img" style="display:block;" src="http://example.com/example.jpg"/> <!-- display:block なのでこれは表示されて欲しい --> </a>