Mattieuga / test

1 stars 1 forks source link

Does not work on codecademy site #1

Open josher19 opened 11 years ago

josher19 commented 11 years ago

Does not work for Google Chrome. I expect that it is a cross-domain problem because codecademy uses a frame on another domain for the "Result" tab, so HTML in build_html.js is not being displayed at all. Why not just use static html instead of dynamically loading this page?

console.log shows that async_test.js is left waiting for events:

Will wait on event objects_created
Will wait on event objects_set
Will wait on event objects_saved
Waiting on 3 events

Also, window._parseCommentObjects is not defined.

josher19 commented 11 years ago

Hmm. Looks like there is an iframe within an iframe which has height="0" instead of height="100%". Not sure if this is an Parse issue or CodeAcademy issue.

josher19 commented 11 years ago

Adding some CSS such as:

html, body, iframe { height: 100% }

should help.