Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BUGFIX beta] Prevent
unsafe:
protocol popups in test suite.
When running the test suite under Safari (before these changes) you would have a number of popups regarding the `unsafe:` protocol not having an application associated. The warning was triggered on Safari when the element is inserted into the DOM, this change swaps from `view.appendTo` to `view.createElement()`. `createElement()` adds the element but does not insert into the DOM (allowing us to do the assertions we need but preventing this annoying popup).
- Loading branch information