Add gfx:PointF support to mate::Converter

It's needed by atom_api_screen, BuildPrototype function on Windows.
This commit is contained in:
Aleksei Kuzmin 2018-05-29 18:01:31 +02:00 committed by Samuel Attard
parent 622544a902
commit c786abf1e9
3 changed files with 36 additions and 10 deletions

View file

@ -711,8 +711,7 @@ describe('<webview> tag', function () {
})
})
// TODO(alexeykuzmin): Enable the tests.
xdescribe('devtools-opened event', () => {
describe('devtools-opened event', () => {
it('should fire when webview.openDevTools() is called', async () => {
loadWebView(webview, {
src: `file://${fixtures}/pages/base-page.html`
@ -726,8 +725,7 @@ describe('<webview> tag', function () {
})
})
// TODO(alexeykuzmin): Enable the tests.
xdescribe('devtools-closed event', () => {
describe('devtools-closed event', () => {
it('should fire when webview.closeDevTools() is called', async () => {
loadWebView(webview, {
src: `file://${fixtures}/pages/base-page.html`
@ -742,8 +740,7 @@ describe('<webview> tag', function () {
})
})
// TODO(alexeykuzmin): Enable the tests.
xdescribe('devtools-focused event', () => {
describe('devtools-focused event', () => {
it('should fire when webview.openDevTools() is called', async () => {
loadWebView(webview, {
src: `file://${fixtures}/pages/base-page.html`
@ -1212,10 +1209,7 @@ describe('<webview> tag', function () {
})
})
// TODO(alexeykuzmin): Enable the test.
// The app crashes if this test and "devtools-opened event" tests
// are run at the same time.
xit('loads devtools extensions registered on the parent window', async () => {
it('loads devtools extensions registered on the parent window', async () => {
const w = await openTheWindow({ show: false })
BrowserWindow.removeDevToolsExtension('foo')