Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 258 | 258 |
| 259 WebElement WebDocument::createElement(const WebString& tagName) | 259 WebElement WebDocument::createElement(const WebString& tagName) |
| 260 { | 260 { |
| 261 TrackExceptionState exceptionState; | 261 TrackExceptionState exceptionState; |
| 262 WebElement element(unwrap<Document>()->createElement(tagName, exceptionState )); | 262 WebElement element(unwrap<Document>()->createElement(tagName, exceptionState )); |
| 263 if (exceptionState.hadException()) | 263 if (exceptionState.hadException()) |
| 264 return WebElement(); | 264 return WebElement(); |
| 265 return element; | 265 return element; |
| 266 } | 266 } |
| 267 | 267 |
| 268 void WebDocument::setIsTransitionDocument() | |
| 269 { | |
| 270 // This ensures the transition UA stylesheet gets applied. | |
| 271 unwrap<Document>()->setIsTransitionDocument(); | |
| 272 } | |
| 273 | |
| 274 void WebDocument::beginExitTransition(const WebString& cssSelector) | |
| 275 { | |
| 276 Document* document = unwrap<Document>(); | |
|
abarth-chromium
2014/08/01 22:27:32
RefPtr<Document>
I don't think it matters, but th
oystein (OOO til 10th of July)
2014/08/01 22:57:06
Done.
| |
| 277 document->hideTransitionElements(cssSelector); | |
| 278 document->styleEngine()->enableExitTransitionStylesheets(); | |
| 279 } | |
| 280 | |
| 268 WebAXObject WebDocument::accessibilityObject() const | 281 WebAXObject WebDocument::accessibilityObject() const |
| 269 { | 282 { |
| 270 const Document* document = constUnwrap<Document>(); | 283 const Document* document = constUnwrap<Document>(); |
| 271 return WebAXObject(document->axObjectCache()->getOrCreate(document->renderVi ew())); | 284 return WebAXObject(document->axObjectCache()->getOrCreate(document->renderVi ew())); |
| 272 } | 285 } |
| 273 | 286 |
| 274 WebAXObject WebDocument::accessibilityObjectFromID(int axID) const | 287 WebAXObject WebDocument::accessibilityObjectFromID(int axID) const |
| 275 { | 288 { |
| 276 const Document* document = constUnwrap<Document>(); | 289 const Document* document = constUnwrap<Document>(); |
| 277 return WebAXObject(document->axObjectCache()->objectFromAXID(axID)); | 290 return WebAXObject(document->axObjectCache()->objectFromAXID(axID)); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 316 m_private = elem; | 329 m_private = elem; |
| 317 return *this; | 330 return *this; |
| 318 } | 331 } |
| 319 | 332 |
| 320 WebDocument::operator PassRefPtrWillBeRawPtr<Document>() const | 333 WebDocument::operator PassRefPtrWillBeRawPtr<Document>() const |
| 321 { | 334 { |
| 322 return toDocument(m_private.get()); | 335 return toDocument(m_private.get()); |
| 323 } | 336 } |
| 324 | 337 |
| 325 } // namespace blink | 338 } // namespace blink |
| OLD | NEW |