| 7191 | } |
| 7192 | |
| 7193 | void ldomDocumentFragmentWriter::setCodeBase( lString16 fileName ) |
| 7194 | { |
| 7195 | filePathName = fileName; |
| 7196 | codeBasePrefix = pathSubstitutions.get(fileName); |
| 7197 | codeBase = LVExtractPath(filePathName); |
| 7198 | if ( codeBasePrefix.empty() ) { |
| 7199 | CRLog::trace("codeBasePrefix is empty for path %s", LCSTR(fileName)); |
| 7200 | codeBasePrefix = pathSubstitutions.get(fileName); |
| 7201 | } |
| 7202 | stylesheetFile.clear(); |
| 7203 | } |
| 7204 | |
| 7205 | /// called on attribute |
| 7206 | void ldomDocumentFragmentWriter::OnAttribute( const lChar16 * nsname, const lChar16 * attrname, const lChar16 * attrvalue ) |
no test coverage detected