Lines 231-236
libc++ provides std::nullptr emulation, so we don't have to.
Link Here
|
231 |
document()->setParsing(false); // Make the doc think it's done, so it will apply xsl sheets. |
231 |
document()->setParsing(false); // Make the doc think it's done, so it will apply xsl sheets. |
232 |
document()->styleSelectorChanged(RecalcStyleImmediately); |
232 |
document()->styleSelectorChanged(RecalcStyleImmediately); |
233 |
document()->setParsing(true); |
233 |
document()->setParsing(true); |
|
|
234 |
--- src/3rdparty/webkit/Source/WebCore/html/HTMLImageElement.cpp.orig 2015-05-07 14:14:47 UTC |
235 |
+++ src/3rdparty/webkit/Source/WebCore/html/HTMLImageElement.cpp |
236 |
@@ -74,7 +74,7 @@ PassRefPtr<HTMLImageElement> HTMLImageEl |
237 |
RefPtr<HTMLImageElement> image = adoptRef(new HTMLImageElement(imgTag, document)); |
238 |
if (optionalWidth) |
239 |
image->setWidth(*optionalWidth); |
240 |
- if (optionalHeight > 0) |
241 |
+ if (optionalHeight) |
242 |
image->setHeight(*optionalHeight); |
243 |
return image.release(); |
244 |
} |
234 |
--- src/3rdparty/webkit/Source/WebCore/loader/icon/IconRecord.h |
245 |
--- src/3rdparty/webkit/Source/WebCore/loader/icon/IconRecord.h |
235 |
+++ src/3rdparty/webkit/Source/WebCore/loader/icon/IconRecord.h |
246 |
+++ src/3rdparty/webkit/Source/WebCore/loader/icon/IconRecord.h |
236 |
@@ -38,7 +38,7 @@ |
247 |
@@ -38,7 +38,7 @@ |