I'm having an IFrameElement on my page and I'd like to access it's nodes.
However, this sample:
frame.onLoad.listen((Event t) {
print(frame.nodes.length);
});
returned 0;
That's obvious, because the IFrameElement doesn't have any direct nodes, but I had to try.