OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_exceptionState
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketTest.cpp
105
,
m_exceptionState
(ExceptionState::ConstructionContext, "property", "interface", m_executionScope.scriptState()->context()->Global(), m_executionScope.isolate())
129
ExceptionState
m_exceptionState
;
138
m_websocket->connect("xxx", Vector<String>(),
m_exceptionState
);
141
EXPECT_TRUE(
m_exceptionState
.hadException());
142
EXPECT_EQ(SyntaxError,
m_exceptionState
.code());
143
EXPECT_EQ("The URL 'xxx' is invalid.",
m_exceptionState
.message());
149
m_websocket->connect("http://example.com/", Vector<String>(),
m_exceptionState
);
152
EXPECT_TRUE(
m_exceptionState
.hadException());
153
EXPECT_EQ(SyntaxError,
m_exceptionState
.code());
154
EXPECT_EQ("The URL's scheme must be either 'ws' or 'wss'. 'http' is not allowed.",
m_exceptionState
.message())
[
all
...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
Dictionary.h
112
,
m_exceptionState
(exceptionState)
121
ExceptionState& exceptionState() const { return
m_exceptionState
; }
135
ExceptionState&
m_exceptionState
;
Completed in 198 milliseconds