"document()/html//div[class='title']//img[class='icon']/@src"
$("html div.title img.icon").attr("src")
You can also do arbitrary attribute searches:
$("html div[class~='title'] img[src*='google']") // "~=" == "contains word" - space-delimited to match html classes // "*=" == "contains substring"