| 1500 | } |
| 1501 | |
| 1502 | void UIWidget::reportStyleStateChangeRecursive( bool disableAnimations, bool forceReApplyStyles ) { |
| 1503 | Node* childLoop = getFirstChild(); |
| 1504 | while ( childLoop != NULL ) { |
| 1505 | if ( childLoop->isWidget() ) |
| 1506 | childLoop->asType<UIWidget>()->reportStyleStateChangeRecursive( disableAnimations, |
| 1507 | forceReApplyStyles ); |
| 1508 | childLoop = childLoop->getNextNode(); |
| 1509 | } |
| 1510 | reportStyleStateChange( disableAnimations, forceReApplyStyles ); |
| 1511 | } |
| 1512 | |
| 1513 | UIWidget* UIWidget::querySelector( const std::string& selector ) { |
| 1514 | return querySelector( CSS::StyleSheetSelector( selector ) ); |
no test coverage detected