diff --git a/content/base/src/moz.build b/content/base/src/moz.build index 7de3efef2fc9..50498603d0c3 100644 --- a/content/base/src/moz.build +++ b/content/base/src/moz.build @@ -210,10 +210,10 @@ LOCAL_INCLUDES += [ '/caps', '/content/html/content/src', '/content/html/document/src', - '/content/svg/content/src', '/docshell/base', '/dom/base', '/dom/ipc', + '/dom/svg', '/dom/workers', '/dom/xbl', '/dom/xml', diff --git a/content/moz.build b/content/moz.build index d3fb25d87531..4750fdad5ce9 100644 --- a/content/moz.build +++ b/content/moz.build @@ -8,7 +8,6 @@ DIRS += [ 'base', 'html', 'media', - 'svg', ] XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini'] diff --git a/content/svg/content/moz.build b/content/svg/content/moz.build deleted file mode 100644 index d7694feea736..000000000000 --- a/content/svg/content/moz.build +++ /dev/null @@ -1,9 +0,0 @@ -# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- -# vim: set filetype=python: -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -DIRS += ['src'] - -MOCHITEST_MANIFESTS += ['test/mochitest.ini'] diff --git a/content/svg/document/src/moz.build b/content/svg/document/src/moz.build deleted file mode 100644 index 6a8f823294e1..000000000000 --- a/content/svg/document/src/moz.build +++ /dev/null @@ -1,25 +0,0 @@ -# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- -# vim: set filetype=python: -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -EXPORTS.mozilla.dom += [ - 'SVGDocument.h', -] - -SOURCES += [ - 'SVGDocument.cpp', -] - -FAIL_ON_WARNINGS = True - -LOCAL_INCLUDES += [ - '/content/base/src', - '/content/html/document/src', - '/content/svg/content/src', - '/dom/xml', - '/layout/style', -] - -FINAL_LIBRARY = 'xul' diff --git a/content/svg/moz.build b/content/svg/moz.build deleted file mode 100644 index dd57669525ec..000000000000 --- a/content/svg/moz.build +++ /dev/null @@ -1,7 +0,0 @@ -# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- -# vim: set filetype=python: -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -DIRS += ['document/src', 'content'] diff --git a/dom/bindings/moz.build b/dom/bindings/moz.build index b90f884dc7f8..78fe9a654b5d 100644 --- a/dom/bindings/moz.build +++ b/dom/bindings/moz.build @@ -46,7 +46,6 @@ LOCAL_INCLUDES += [ '/content/html/document/src', '/content/media/webaudio', '/content/media/webspeech/recognition', - '/content/svg/content/src', '/dom/base', '/dom/battery', '/dom/bluetooth', @@ -54,6 +53,7 @@ LOCAL_INCLUDES += [ '/dom/canvas', '/dom/geolocation', '/dom/indexedDB', + '/dom/svg', '/dom/workers', '/dom/xbl', '/dom/xml', diff --git a/dom/canvas/moz.build b/dom/canvas/moz.build index ba9d73596e81..d6039b5481e6 100644 --- a/dom/canvas/moz.build +++ b/dom/canvas/moz.build @@ -126,8 +126,8 @@ FINAL_LIBRARY = 'xul' LOCAL_INCLUDES += [ '/content/base/src', '/content/html/content/src', - '/content/svg/content/src', '/dom/base', + '/dom/svg', '/dom/xul', '/gfx/gl', '/image/src', diff --git a/dom/moz.build b/dom/moz.build index 81d9f5ed0589..12110aca2aaa 100644 --- a/dom/moz.build +++ b/dom/moz.build @@ -74,6 +74,7 @@ DIRS += [ 'quota', 'settings', 'storage', + 'svg', 'mobilemessage', 'time', 'locales', diff --git a/dom/smil/moz.build b/dom/smil/moz.build index 38d9463f5c8a..365d99902b00 100644 --- a/dom/smil/moz.build +++ b/dom/smil/moz.build @@ -66,7 +66,7 @@ FAIL_ON_WARNINGS = True LOCAL_INCLUDES += [ '/content/base/src', - '/content/svg/content/src', + '/dom/svg', '/layout/style', ] diff --git a/content/svg/content/src/DOMSVGAnimatedLengthList.cpp b/dom/svg/DOMSVGAnimatedLengthList.cpp similarity index 100% rename from content/svg/content/src/DOMSVGAnimatedLengthList.cpp rename to dom/svg/DOMSVGAnimatedLengthList.cpp diff --git a/content/svg/content/src/DOMSVGAnimatedLengthList.h b/dom/svg/DOMSVGAnimatedLengthList.h similarity index 100% rename from content/svg/content/src/DOMSVGAnimatedLengthList.h rename to dom/svg/DOMSVGAnimatedLengthList.h diff --git a/content/svg/content/src/DOMSVGAnimatedNumberList.cpp b/dom/svg/DOMSVGAnimatedNumberList.cpp similarity index 100% rename from content/svg/content/src/DOMSVGAnimatedNumberList.cpp rename to dom/svg/DOMSVGAnimatedNumberList.cpp diff --git a/content/svg/content/src/DOMSVGAnimatedNumberList.h b/dom/svg/DOMSVGAnimatedNumberList.h similarity index 100% rename from content/svg/content/src/DOMSVGAnimatedNumberList.h rename to dom/svg/DOMSVGAnimatedNumberList.h diff --git a/content/svg/content/src/DOMSVGLength.cpp b/dom/svg/DOMSVGLength.cpp similarity index 100% rename from content/svg/content/src/DOMSVGLength.cpp rename to dom/svg/DOMSVGLength.cpp diff --git a/content/svg/content/src/DOMSVGLength.h b/dom/svg/DOMSVGLength.h similarity index 100% rename from content/svg/content/src/DOMSVGLength.h rename to dom/svg/DOMSVGLength.h diff --git a/content/svg/content/src/DOMSVGLengthList.cpp b/dom/svg/DOMSVGLengthList.cpp similarity index 100% rename from content/svg/content/src/DOMSVGLengthList.cpp rename to dom/svg/DOMSVGLengthList.cpp diff --git a/content/svg/content/src/DOMSVGLengthList.h b/dom/svg/DOMSVGLengthList.h similarity index 100% rename from content/svg/content/src/DOMSVGLengthList.h rename to dom/svg/DOMSVGLengthList.h diff --git a/content/svg/content/src/DOMSVGNumber.cpp b/dom/svg/DOMSVGNumber.cpp similarity index 100% rename from content/svg/content/src/DOMSVGNumber.cpp rename to dom/svg/DOMSVGNumber.cpp diff --git a/content/svg/content/src/DOMSVGNumber.h b/dom/svg/DOMSVGNumber.h similarity index 100% rename from content/svg/content/src/DOMSVGNumber.h rename to dom/svg/DOMSVGNumber.h diff --git a/content/svg/content/src/DOMSVGNumberList.cpp b/dom/svg/DOMSVGNumberList.cpp similarity index 100% rename from content/svg/content/src/DOMSVGNumberList.cpp rename to dom/svg/DOMSVGNumberList.cpp diff --git a/content/svg/content/src/DOMSVGNumberList.h b/dom/svg/DOMSVGNumberList.h similarity index 100% rename from content/svg/content/src/DOMSVGNumberList.h rename to dom/svg/DOMSVGNumberList.h diff --git a/content/svg/content/src/DOMSVGPathSeg.cpp b/dom/svg/DOMSVGPathSeg.cpp similarity index 100% rename from content/svg/content/src/DOMSVGPathSeg.cpp rename to dom/svg/DOMSVGPathSeg.cpp diff --git a/content/svg/content/src/DOMSVGPathSeg.h b/dom/svg/DOMSVGPathSeg.h similarity index 100% rename from content/svg/content/src/DOMSVGPathSeg.h rename to dom/svg/DOMSVGPathSeg.h diff --git a/content/svg/content/src/DOMSVGPathSegList.cpp b/dom/svg/DOMSVGPathSegList.cpp similarity index 100% rename from content/svg/content/src/DOMSVGPathSegList.cpp rename to dom/svg/DOMSVGPathSegList.cpp diff --git a/content/svg/content/src/DOMSVGPathSegList.h b/dom/svg/DOMSVGPathSegList.h similarity index 100% rename from content/svg/content/src/DOMSVGPathSegList.h rename to dom/svg/DOMSVGPathSegList.h diff --git a/content/svg/content/src/DOMSVGPoint.cpp b/dom/svg/DOMSVGPoint.cpp similarity index 100% rename from content/svg/content/src/DOMSVGPoint.cpp rename to dom/svg/DOMSVGPoint.cpp diff --git a/content/svg/content/src/DOMSVGPoint.h b/dom/svg/DOMSVGPoint.h similarity index 100% rename from content/svg/content/src/DOMSVGPoint.h rename to dom/svg/DOMSVGPoint.h diff --git a/content/svg/content/src/DOMSVGPointList.cpp b/dom/svg/DOMSVGPointList.cpp similarity index 100% rename from content/svg/content/src/DOMSVGPointList.cpp rename to dom/svg/DOMSVGPointList.cpp diff --git a/content/svg/content/src/DOMSVGPointList.h b/dom/svg/DOMSVGPointList.h similarity index 100% rename from content/svg/content/src/DOMSVGPointList.h rename to dom/svg/DOMSVGPointList.h diff --git a/content/svg/content/src/DOMSVGStringList.cpp b/dom/svg/DOMSVGStringList.cpp similarity index 100% rename from content/svg/content/src/DOMSVGStringList.cpp rename to dom/svg/DOMSVGStringList.cpp diff --git a/content/svg/content/src/DOMSVGStringList.h b/dom/svg/DOMSVGStringList.h similarity index 100% rename from content/svg/content/src/DOMSVGStringList.h rename to dom/svg/DOMSVGStringList.h diff --git a/content/svg/content/src/DOMSVGTransformList.cpp b/dom/svg/DOMSVGTransformList.cpp similarity index 100% rename from content/svg/content/src/DOMSVGTransformList.cpp rename to dom/svg/DOMSVGTransformList.cpp diff --git a/content/svg/content/src/DOMSVGTransformList.h b/dom/svg/DOMSVGTransformList.h similarity index 100% rename from content/svg/content/src/DOMSVGTransformList.h rename to dom/svg/DOMSVGTransformList.h diff --git a/content/svg/content/src/SVGAElement.cpp b/dom/svg/SVGAElement.cpp similarity index 100% rename from content/svg/content/src/SVGAElement.cpp rename to dom/svg/SVGAElement.cpp diff --git a/content/svg/content/src/SVGAElement.h b/dom/svg/SVGAElement.h similarity index 100% rename from content/svg/content/src/SVGAElement.h rename to dom/svg/SVGAElement.h diff --git a/content/svg/content/src/SVGAltGlyphElement.cpp b/dom/svg/SVGAltGlyphElement.cpp similarity index 100% rename from content/svg/content/src/SVGAltGlyphElement.cpp rename to dom/svg/SVGAltGlyphElement.cpp diff --git a/content/svg/content/src/SVGAltGlyphElement.h b/dom/svg/SVGAltGlyphElement.h similarity index 100% rename from content/svg/content/src/SVGAltGlyphElement.h rename to dom/svg/SVGAltGlyphElement.h diff --git a/content/svg/content/src/SVGAngle.cpp b/dom/svg/SVGAngle.cpp similarity index 100% rename from content/svg/content/src/SVGAngle.cpp rename to dom/svg/SVGAngle.cpp diff --git a/content/svg/content/src/SVGAngle.h b/dom/svg/SVGAngle.h similarity index 100% rename from content/svg/content/src/SVGAngle.h rename to dom/svg/SVGAngle.h diff --git a/content/svg/content/src/SVGAnimateElement.cpp b/dom/svg/SVGAnimateElement.cpp similarity index 100% rename from content/svg/content/src/SVGAnimateElement.cpp rename to dom/svg/SVGAnimateElement.cpp diff --git a/content/svg/content/src/SVGAnimateElement.h b/dom/svg/SVGAnimateElement.h similarity index 100% rename from content/svg/content/src/SVGAnimateElement.h rename to dom/svg/SVGAnimateElement.h diff --git a/content/svg/content/src/SVGAnimateMotionElement.cpp b/dom/svg/SVGAnimateMotionElement.cpp similarity index 100% rename from content/svg/content/src/SVGAnimateMotionElement.cpp rename to dom/svg/SVGAnimateMotionElement.cpp diff --git a/content/svg/content/src/SVGAnimateMotionElement.h b/dom/svg/SVGAnimateMotionElement.h similarity index 100% rename from content/svg/content/src/SVGAnimateMotionElement.h rename to dom/svg/SVGAnimateMotionElement.h diff --git a/content/svg/content/src/SVGAnimateTransformElement.cpp b/dom/svg/SVGAnimateTransformElement.cpp similarity index 100% rename from content/svg/content/src/SVGAnimateTransformElement.cpp rename to dom/svg/SVGAnimateTransformElement.cpp diff --git a/content/svg/content/src/SVGAnimateTransformElement.h b/dom/svg/SVGAnimateTransformElement.h similarity index 100% rename from content/svg/content/src/SVGAnimateTransformElement.h rename to dom/svg/SVGAnimateTransformElement.h diff --git a/content/svg/content/src/SVGAnimatedAngle.cpp b/dom/svg/SVGAnimatedAngle.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedAngle.cpp rename to dom/svg/SVGAnimatedAngle.cpp diff --git a/content/svg/content/src/SVGAnimatedAngle.h b/dom/svg/SVGAnimatedAngle.h similarity index 100% rename from content/svg/content/src/SVGAnimatedAngle.h rename to dom/svg/SVGAnimatedAngle.h diff --git a/content/svg/content/src/SVGAnimatedBoolean.cpp b/dom/svg/SVGAnimatedBoolean.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedBoolean.cpp rename to dom/svg/SVGAnimatedBoolean.cpp diff --git a/content/svg/content/src/SVGAnimatedBoolean.h b/dom/svg/SVGAnimatedBoolean.h similarity index 100% rename from content/svg/content/src/SVGAnimatedBoolean.h rename to dom/svg/SVGAnimatedBoolean.h diff --git a/content/svg/content/src/SVGAnimatedEnumeration.cpp b/dom/svg/SVGAnimatedEnumeration.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedEnumeration.cpp rename to dom/svg/SVGAnimatedEnumeration.cpp diff --git a/content/svg/content/src/SVGAnimatedEnumeration.h b/dom/svg/SVGAnimatedEnumeration.h similarity index 100% rename from content/svg/content/src/SVGAnimatedEnumeration.h rename to dom/svg/SVGAnimatedEnumeration.h diff --git a/content/svg/content/src/SVGAnimatedInteger.cpp b/dom/svg/SVGAnimatedInteger.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedInteger.cpp rename to dom/svg/SVGAnimatedInteger.cpp diff --git a/content/svg/content/src/SVGAnimatedInteger.h b/dom/svg/SVGAnimatedInteger.h similarity index 100% rename from content/svg/content/src/SVGAnimatedInteger.h rename to dom/svg/SVGAnimatedInteger.h diff --git a/content/svg/content/src/SVGAnimatedLength.cpp b/dom/svg/SVGAnimatedLength.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedLength.cpp rename to dom/svg/SVGAnimatedLength.cpp diff --git a/content/svg/content/src/SVGAnimatedLength.h b/dom/svg/SVGAnimatedLength.h similarity index 100% rename from content/svg/content/src/SVGAnimatedLength.h rename to dom/svg/SVGAnimatedLength.h diff --git a/content/svg/content/src/SVGAnimatedLengthList.cpp b/dom/svg/SVGAnimatedLengthList.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedLengthList.cpp rename to dom/svg/SVGAnimatedLengthList.cpp diff --git a/content/svg/content/src/SVGAnimatedLengthList.h b/dom/svg/SVGAnimatedLengthList.h similarity index 100% rename from content/svg/content/src/SVGAnimatedLengthList.h rename to dom/svg/SVGAnimatedLengthList.h diff --git a/content/svg/content/src/SVGAnimatedNumber.cpp b/dom/svg/SVGAnimatedNumber.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedNumber.cpp rename to dom/svg/SVGAnimatedNumber.cpp diff --git a/content/svg/content/src/SVGAnimatedNumber.h b/dom/svg/SVGAnimatedNumber.h similarity index 100% rename from content/svg/content/src/SVGAnimatedNumber.h rename to dom/svg/SVGAnimatedNumber.h diff --git a/content/svg/content/src/SVGAnimatedNumberList.cpp b/dom/svg/SVGAnimatedNumberList.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedNumberList.cpp rename to dom/svg/SVGAnimatedNumberList.cpp diff --git a/content/svg/content/src/SVGAnimatedNumberList.h b/dom/svg/SVGAnimatedNumberList.h similarity index 100% rename from content/svg/content/src/SVGAnimatedNumberList.h rename to dom/svg/SVGAnimatedNumberList.h diff --git a/content/svg/content/src/SVGAnimatedPathSegList.cpp b/dom/svg/SVGAnimatedPathSegList.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedPathSegList.cpp rename to dom/svg/SVGAnimatedPathSegList.cpp diff --git a/content/svg/content/src/SVGAnimatedPathSegList.h b/dom/svg/SVGAnimatedPathSegList.h similarity index 100% rename from content/svg/content/src/SVGAnimatedPathSegList.h rename to dom/svg/SVGAnimatedPathSegList.h diff --git a/content/svg/content/src/SVGAnimatedPointList.cpp b/dom/svg/SVGAnimatedPointList.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedPointList.cpp rename to dom/svg/SVGAnimatedPointList.cpp diff --git a/content/svg/content/src/SVGAnimatedPointList.h b/dom/svg/SVGAnimatedPointList.h similarity index 100% rename from content/svg/content/src/SVGAnimatedPointList.h rename to dom/svg/SVGAnimatedPointList.h diff --git a/content/svg/content/src/SVGAnimatedPreserveAspectRatio.cpp b/dom/svg/SVGAnimatedPreserveAspectRatio.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedPreserveAspectRatio.cpp rename to dom/svg/SVGAnimatedPreserveAspectRatio.cpp diff --git a/content/svg/content/src/SVGAnimatedPreserveAspectRatio.h b/dom/svg/SVGAnimatedPreserveAspectRatio.h similarity index 100% rename from content/svg/content/src/SVGAnimatedPreserveAspectRatio.h rename to dom/svg/SVGAnimatedPreserveAspectRatio.h diff --git a/content/svg/content/src/SVGAnimatedRect.cpp b/dom/svg/SVGAnimatedRect.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedRect.cpp rename to dom/svg/SVGAnimatedRect.cpp diff --git a/content/svg/content/src/SVGAnimatedRect.h b/dom/svg/SVGAnimatedRect.h similarity index 100% rename from content/svg/content/src/SVGAnimatedRect.h rename to dom/svg/SVGAnimatedRect.h diff --git a/content/svg/content/src/SVGAnimatedString.cpp b/dom/svg/SVGAnimatedString.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedString.cpp rename to dom/svg/SVGAnimatedString.cpp diff --git a/content/svg/content/src/SVGAnimatedString.h b/dom/svg/SVGAnimatedString.h similarity index 100% rename from content/svg/content/src/SVGAnimatedString.h rename to dom/svg/SVGAnimatedString.h diff --git a/content/svg/content/src/SVGAnimatedTransformList.cpp b/dom/svg/SVGAnimatedTransformList.cpp similarity index 100% rename from content/svg/content/src/SVGAnimatedTransformList.cpp rename to dom/svg/SVGAnimatedTransformList.cpp diff --git a/content/svg/content/src/SVGAnimatedTransformList.h b/dom/svg/SVGAnimatedTransformList.h similarity index 100% rename from content/svg/content/src/SVGAnimatedTransformList.h rename to dom/svg/SVGAnimatedTransformList.h diff --git a/content/svg/content/src/SVGAnimationElement.cpp b/dom/svg/SVGAnimationElement.cpp similarity index 100% rename from content/svg/content/src/SVGAnimationElement.cpp rename to dom/svg/SVGAnimationElement.cpp diff --git a/content/svg/content/src/SVGAnimationElement.h b/dom/svg/SVGAnimationElement.h similarity index 100% rename from content/svg/content/src/SVGAnimationElement.h rename to dom/svg/SVGAnimationElement.h diff --git a/content/svg/content/src/SVGAttrValueWrapper.cpp b/dom/svg/SVGAttrValueWrapper.cpp similarity index 100% rename from content/svg/content/src/SVGAttrValueWrapper.cpp rename to dom/svg/SVGAttrValueWrapper.cpp diff --git a/content/svg/content/src/SVGAttrValueWrapper.h b/dom/svg/SVGAttrValueWrapper.h similarity index 100% rename from content/svg/content/src/SVGAttrValueWrapper.h rename to dom/svg/SVGAttrValueWrapper.h diff --git a/content/svg/content/src/SVGCircleElement.cpp b/dom/svg/SVGCircleElement.cpp similarity index 100% rename from content/svg/content/src/SVGCircleElement.cpp rename to dom/svg/SVGCircleElement.cpp diff --git a/content/svg/content/src/SVGCircleElement.h b/dom/svg/SVGCircleElement.h similarity index 100% rename from content/svg/content/src/SVGCircleElement.h rename to dom/svg/SVGCircleElement.h diff --git a/content/svg/content/src/SVGClipPathElement.cpp b/dom/svg/SVGClipPathElement.cpp similarity index 100% rename from content/svg/content/src/SVGClipPathElement.cpp rename to dom/svg/SVGClipPathElement.cpp diff --git a/content/svg/content/src/SVGClipPathElement.h b/dom/svg/SVGClipPathElement.h similarity index 100% rename from content/svg/content/src/SVGClipPathElement.h rename to dom/svg/SVGClipPathElement.h diff --git a/content/svg/content/src/SVGComponentTransferFunctionElement.h b/dom/svg/SVGComponentTransferFunctionElement.h similarity index 100% rename from content/svg/content/src/SVGComponentTransferFunctionElement.h rename to dom/svg/SVGComponentTransferFunctionElement.h diff --git a/content/svg/content/src/SVGContentUtils.cpp b/dom/svg/SVGContentUtils.cpp similarity index 100% rename from content/svg/content/src/SVGContentUtils.cpp rename to dom/svg/SVGContentUtils.cpp diff --git a/content/svg/content/src/SVGContentUtils.h b/dom/svg/SVGContentUtils.h similarity index 100% rename from content/svg/content/src/SVGContentUtils.h rename to dom/svg/SVGContentUtils.h diff --git a/content/svg/content/src/SVGDefsElement.cpp b/dom/svg/SVGDefsElement.cpp similarity index 100% rename from content/svg/content/src/SVGDefsElement.cpp rename to dom/svg/SVGDefsElement.cpp diff --git a/content/svg/content/src/SVGDefsElement.h b/dom/svg/SVGDefsElement.h similarity index 100% rename from content/svg/content/src/SVGDefsElement.h rename to dom/svg/SVGDefsElement.h diff --git a/content/svg/content/src/SVGDescElement.cpp b/dom/svg/SVGDescElement.cpp similarity index 100% rename from content/svg/content/src/SVGDescElement.cpp rename to dom/svg/SVGDescElement.cpp diff --git a/content/svg/content/src/SVGDescElement.h b/dom/svg/SVGDescElement.h similarity index 100% rename from content/svg/content/src/SVGDescElement.h rename to dom/svg/SVGDescElement.h diff --git a/content/svg/document/src/SVGDocument.cpp b/dom/svg/SVGDocument.cpp similarity index 100% rename from content/svg/document/src/SVGDocument.cpp rename to dom/svg/SVGDocument.cpp diff --git a/content/svg/document/src/SVGDocument.h b/dom/svg/SVGDocument.h similarity index 100% rename from content/svg/document/src/SVGDocument.h rename to dom/svg/SVGDocument.h diff --git a/content/svg/content/src/SVGElementFactory.cpp b/dom/svg/SVGElementFactory.cpp similarity index 100% rename from content/svg/content/src/SVGElementFactory.cpp rename to dom/svg/SVGElementFactory.cpp diff --git a/content/svg/content/src/SVGElementFactory.h b/dom/svg/SVGElementFactory.h similarity index 100% rename from content/svg/content/src/SVGElementFactory.h rename to dom/svg/SVGElementFactory.h diff --git a/content/svg/content/src/SVGEllipseElement.cpp b/dom/svg/SVGEllipseElement.cpp similarity index 100% rename from content/svg/content/src/SVGEllipseElement.cpp rename to dom/svg/SVGEllipseElement.cpp diff --git a/content/svg/content/src/SVGEllipseElement.h b/dom/svg/SVGEllipseElement.h similarity index 100% rename from content/svg/content/src/SVGEllipseElement.h rename to dom/svg/SVGEllipseElement.h diff --git a/content/svg/content/src/SVGFEBlendElement.cpp b/dom/svg/SVGFEBlendElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEBlendElement.cpp rename to dom/svg/SVGFEBlendElement.cpp diff --git a/content/svg/content/src/SVGFEBlendElement.h b/dom/svg/SVGFEBlendElement.h similarity index 100% rename from content/svg/content/src/SVGFEBlendElement.h rename to dom/svg/SVGFEBlendElement.h diff --git a/content/svg/content/src/SVGFEColorMatrixElement.cpp b/dom/svg/SVGFEColorMatrixElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEColorMatrixElement.cpp rename to dom/svg/SVGFEColorMatrixElement.cpp diff --git a/content/svg/content/src/SVGFEColorMatrixElement.h b/dom/svg/SVGFEColorMatrixElement.h similarity index 100% rename from content/svg/content/src/SVGFEColorMatrixElement.h rename to dom/svg/SVGFEColorMatrixElement.h diff --git a/content/svg/content/src/SVGFEComponentTransferElement.cpp b/dom/svg/SVGFEComponentTransferElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEComponentTransferElement.cpp rename to dom/svg/SVGFEComponentTransferElement.cpp diff --git a/content/svg/content/src/SVGFEComponentTransferElement.h b/dom/svg/SVGFEComponentTransferElement.h similarity index 100% rename from content/svg/content/src/SVGFEComponentTransferElement.h rename to dom/svg/SVGFEComponentTransferElement.h diff --git a/content/svg/content/src/SVGFECompositeElement.cpp b/dom/svg/SVGFECompositeElement.cpp similarity index 100% rename from content/svg/content/src/SVGFECompositeElement.cpp rename to dom/svg/SVGFECompositeElement.cpp diff --git a/content/svg/content/src/SVGFECompositeElement.h b/dom/svg/SVGFECompositeElement.h similarity index 100% rename from content/svg/content/src/SVGFECompositeElement.h rename to dom/svg/SVGFECompositeElement.h diff --git a/content/svg/content/src/SVGFEConvolveMatrixElement.cpp b/dom/svg/SVGFEConvolveMatrixElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEConvolveMatrixElement.cpp rename to dom/svg/SVGFEConvolveMatrixElement.cpp diff --git a/content/svg/content/src/SVGFEConvolveMatrixElement.h b/dom/svg/SVGFEConvolveMatrixElement.h similarity index 100% rename from content/svg/content/src/SVGFEConvolveMatrixElement.h rename to dom/svg/SVGFEConvolveMatrixElement.h diff --git a/content/svg/content/src/SVGFEDiffuseLightingElement.cpp b/dom/svg/SVGFEDiffuseLightingElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEDiffuseLightingElement.cpp rename to dom/svg/SVGFEDiffuseLightingElement.cpp diff --git a/content/svg/content/src/SVGFEDiffuseLightingElement.h b/dom/svg/SVGFEDiffuseLightingElement.h similarity index 100% rename from content/svg/content/src/SVGFEDiffuseLightingElement.h rename to dom/svg/SVGFEDiffuseLightingElement.h diff --git a/content/svg/content/src/SVGFEDisplacementMapElement.cpp b/dom/svg/SVGFEDisplacementMapElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEDisplacementMapElement.cpp rename to dom/svg/SVGFEDisplacementMapElement.cpp diff --git a/content/svg/content/src/SVGFEDisplacementMapElement.h b/dom/svg/SVGFEDisplacementMapElement.h similarity index 100% rename from content/svg/content/src/SVGFEDisplacementMapElement.h rename to dom/svg/SVGFEDisplacementMapElement.h diff --git a/content/svg/content/src/SVGFEDistantLightElement.cpp b/dom/svg/SVGFEDistantLightElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEDistantLightElement.cpp rename to dom/svg/SVGFEDistantLightElement.cpp diff --git a/content/svg/content/src/SVGFEDistantLightElement.h b/dom/svg/SVGFEDistantLightElement.h similarity index 100% rename from content/svg/content/src/SVGFEDistantLightElement.h rename to dom/svg/SVGFEDistantLightElement.h diff --git a/content/svg/content/src/SVGFEDropShadowElement.cpp b/dom/svg/SVGFEDropShadowElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEDropShadowElement.cpp rename to dom/svg/SVGFEDropShadowElement.cpp diff --git a/content/svg/content/src/SVGFEDropShadowElement.h b/dom/svg/SVGFEDropShadowElement.h similarity index 100% rename from content/svg/content/src/SVGFEDropShadowElement.h rename to dom/svg/SVGFEDropShadowElement.h diff --git a/content/svg/content/src/SVGFEFloodElement.cpp b/dom/svg/SVGFEFloodElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEFloodElement.cpp rename to dom/svg/SVGFEFloodElement.cpp diff --git a/content/svg/content/src/SVGFEFloodElement.h b/dom/svg/SVGFEFloodElement.h similarity index 100% rename from content/svg/content/src/SVGFEFloodElement.h rename to dom/svg/SVGFEFloodElement.h diff --git a/content/svg/content/src/SVGFEGaussianBlurElement.cpp b/dom/svg/SVGFEGaussianBlurElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEGaussianBlurElement.cpp rename to dom/svg/SVGFEGaussianBlurElement.cpp diff --git a/content/svg/content/src/SVGFEGaussianBlurElement.h b/dom/svg/SVGFEGaussianBlurElement.h similarity index 100% rename from content/svg/content/src/SVGFEGaussianBlurElement.h rename to dom/svg/SVGFEGaussianBlurElement.h diff --git a/content/svg/content/src/SVGFEImageElement.cpp b/dom/svg/SVGFEImageElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEImageElement.cpp rename to dom/svg/SVGFEImageElement.cpp diff --git a/content/svg/content/src/SVGFEImageElement.h b/dom/svg/SVGFEImageElement.h similarity index 100% rename from content/svg/content/src/SVGFEImageElement.h rename to dom/svg/SVGFEImageElement.h diff --git a/content/svg/content/src/SVGFEMergeElement.cpp b/dom/svg/SVGFEMergeElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEMergeElement.cpp rename to dom/svg/SVGFEMergeElement.cpp diff --git a/content/svg/content/src/SVGFEMergeElement.h b/dom/svg/SVGFEMergeElement.h similarity index 100% rename from content/svg/content/src/SVGFEMergeElement.h rename to dom/svg/SVGFEMergeElement.h diff --git a/content/svg/content/src/SVGFEMergeNodeElement.cpp b/dom/svg/SVGFEMergeNodeElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEMergeNodeElement.cpp rename to dom/svg/SVGFEMergeNodeElement.cpp diff --git a/content/svg/content/src/SVGFEMergeNodeElement.h b/dom/svg/SVGFEMergeNodeElement.h similarity index 100% rename from content/svg/content/src/SVGFEMergeNodeElement.h rename to dom/svg/SVGFEMergeNodeElement.h diff --git a/content/svg/content/src/SVGFEMorphologyElement.cpp b/dom/svg/SVGFEMorphologyElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEMorphologyElement.cpp rename to dom/svg/SVGFEMorphologyElement.cpp diff --git a/content/svg/content/src/SVGFEMorphologyElement.h b/dom/svg/SVGFEMorphologyElement.h similarity index 100% rename from content/svg/content/src/SVGFEMorphologyElement.h rename to dom/svg/SVGFEMorphologyElement.h diff --git a/content/svg/content/src/SVGFEOffsetElement.cpp b/dom/svg/SVGFEOffsetElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEOffsetElement.cpp rename to dom/svg/SVGFEOffsetElement.cpp diff --git a/content/svg/content/src/SVGFEOffsetElement.h b/dom/svg/SVGFEOffsetElement.h similarity index 100% rename from content/svg/content/src/SVGFEOffsetElement.h rename to dom/svg/SVGFEOffsetElement.h diff --git a/content/svg/content/src/SVGFEPointLightElement.cpp b/dom/svg/SVGFEPointLightElement.cpp similarity index 100% rename from content/svg/content/src/SVGFEPointLightElement.cpp rename to dom/svg/SVGFEPointLightElement.cpp diff --git a/content/svg/content/src/SVGFEPointLightElement.h b/dom/svg/SVGFEPointLightElement.h similarity index 100% rename from content/svg/content/src/SVGFEPointLightElement.h rename to dom/svg/SVGFEPointLightElement.h diff --git a/content/svg/content/src/SVGFESpecularLightingElement.cpp b/dom/svg/SVGFESpecularLightingElement.cpp similarity index 100% rename from content/svg/content/src/SVGFESpecularLightingElement.cpp rename to dom/svg/SVGFESpecularLightingElement.cpp diff --git a/content/svg/content/src/SVGFESpecularLightingElement.h b/dom/svg/SVGFESpecularLightingElement.h similarity index 100% rename from content/svg/content/src/SVGFESpecularLightingElement.h rename to dom/svg/SVGFESpecularLightingElement.h diff --git a/content/svg/content/src/SVGFESpotLightElement.cpp b/dom/svg/SVGFESpotLightElement.cpp similarity index 100% rename from content/svg/content/src/SVGFESpotLightElement.cpp rename to dom/svg/SVGFESpotLightElement.cpp diff --git a/content/svg/content/src/SVGFESpotLightElement.h b/dom/svg/SVGFESpotLightElement.h similarity index 100% rename from content/svg/content/src/SVGFESpotLightElement.h rename to dom/svg/SVGFESpotLightElement.h diff --git a/content/svg/content/src/SVGFETileElement.cpp b/dom/svg/SVGFETileElement.cpp similarity index 100% rename from content/svg/content/src/SVGFETileElement.cpp rename to dom/svg/SVGFETileElement.cpp diff --git a/content/svg/content/src/SVGFETileElement.h b/dom/svg/SVGFETileElement.h similarity index 100% rename from content/svg/content/src/SVGFETileElement.h rename to dom/svg/SVGFETileElement.h diff --git a/content/svg/content/src/SVGFETurbulenceElement.cpp b/dom/svg/SVGFETurbulenceElement.cpp similarity index 100% rename from content/svg/content/src/SVGFETurbulenceElement.cpp rename to dom/svg/SVGFETurbulenceElement.cpp diff --git a/content/svg/content/src/SVGFETurbulenceElement.h b/dom/svg/SVGFETurbulenceElement.h similarity index 100% rename from content/svg/content/src/SVGFETurbulenceElement.h rename to dom/svg/SVGFETurbulenceElement.h diff --git a/content/svg/content/src/SVGFilterElement.cpp b/dom/svg/SVGFilterElement.cpp similarity index 100% rename from content/svg/content/src/SVGFilterElement.cpp rename to dom/svg/SVGFilterElement.cpp diff --git a/content/svg/content/src/SVGFilterElement.h b/dom/svg/SVGFilterElement.h similarity index 100% rename from content/svg/content/src/SVGFilterElement.h rename to dom/svg/SVGFilterElement.h diff --git a/content/svg/content/src/SVGForeignObjectElement.cpp b/dom/svg/SVGForeignObjectElement.cpp similarity index 100% rename from content/svg/content/src/SVGForeignObjectElement.cpp rename to dom/svg/SVGForeignObjectElement.cpp diff --git a/content/svg/content/src/SVGForeignObjectElement.h b/dom/svg/SVGForeignObjectElement.h similarity index 100% rename from content/svg/content/src/SVGForeignObjectElement.h rename to dom/svg/SVGForeignObjectElement.h diff --git a/content/svg/content/src/SVGFragmentIdentifier.cpp b/dom/svg/SVGFragmentIdentifier.cpp similarity index 100% rename from content/svg/content/src/SVGFragmentIdentifier.cpp rename to dom/svg/SVGFragmentIdentifier.cpp diff --git a/content/svg/content/src/SVGFragmentIdentifier.h b/dom/svg/SVGFragmentIdentifier.h similarity index 100% rename from content/svg/content/src/SVGFragmentIdentifier.h rename to dom/svg/SVGFragmentIdentifier.h diff --git a/content/svg/content/src/SVGGElement.cpp b/dom/svg/SVGGElement.cpp similarity index 100% rename from content/svg/content/src/SVGGElement.cpp rename to dom/svg/SVGGElement.cpp diff --git a/content/svg/content/src/SVGGElement.h b/dom/svg/SVGGElement.h similarity index 100% rename from content/svg/content/src/SVGGElement.h rename to dom/svg/SVGGElement.h diff --git a/content/svg/content/src/SVGGradientElement.cpp b/dom/svg/SVGGradientElement.cpp similarity index 100% rename from content/svg/content/src/SVGGradientElement.cpp rename to dom/svg/SVGGradientElement.cpp diff --git a/content/svg/content/src/SVGGradientElement.h b/dom/svg/SVGGradientElement.h similarity index 100% rename from content/svg/content/src/SVGGradientElement.h rename to dom/svg/SVGGradientElement.h diff --git a/content/svg/content/src/SVGGraphicsElement.cpp b/dom/svg/SVGGraphicsElement.cpp similarity index 100% rename from content/svg/content/src/SVGGraphicsElement.cpp rename to dom/svg/SVGGraphicsElement.cpp diff --git a/content/svg/content/src/SVGGraphicsElement.h b/dom/svg/SVGGraphicsElement.h similarity index 100% rename from content/svg/content/src/SVGGraphicsElement.h rename to dom/svg/SVGGraphicsElement.h diff --git a/content/svg/content/src/SVGIFrameElement.cpp b/dom/svg/SVGIFrameElement.cpp similarity index 100% rename from content/svg/content/src/SVGIFrameElement.cpp rename to dom/svg/SVGIFrameElement.cpp diff --git a/content/svg/content/src/SVGIFrameElement.h b/dom/svg/SVGIFrameElement.h similarity index 100% rename from content/svg/content/src/SVGIFrameElement.h rename to dom/svg/SVGIFrameElement.h diff --git a/content/svg/content/src/SVGIRect.h b/dom/svg/SVGIRect.h similarity index 100% rename from content/svg/content/src/SVGIRect.h rename to dom/svg/SVGIRect.h diff --git a/content/svg/content/src/SVGImageElement.cpp b/dom/svg/SVGImageElement.cpp similarity index 100% rename from content/svg/content/src/SVGImageElement.cpp rename to dom/svg/SVGImageElement.cpp diff --git a/content/svg/content/src/SVGImageElement.h b/dom/svg/SVGImageElement.h similarity index 100% rename from content/svg/content/src/SVGImageElement.h rename to dom/svg/SVGImageElement.h diff --git a/content/svg/content/src/SVGIntegerPairSMILType.cpp b/dom/svg/SVGIntegerPairSMILType.cpp similarity index 100% rename from content/svg/content/src/SVGIntegerPairSMILType.cpp rename to dom/svg/SVGIntegerPairSMILType.cpp diff --git a/content/svg/content/src/SVGIntegerPairSMILType.h b/dom/svg/SVGIntegerPairSMILType.h similarity index 100% rename from content/svg/content/src/SVGIntegerPairSMILType.h rename to dom/svg/SVGIntegerPairSMILType.h diff --git a/content/svg/content/src/SVGLength.cpp b/dom/svg/SVGLength.cpp similarity index 100% rename from content/svg/content/src/SVGLength.cpp rename to dom/svg/SVGLength.cpp diff --git a/content/svg/content/src/SVGLength.h b/dom/svg/SVGLength.h similarity index 100% rename from content/svg/content/src/SVGLength.h rename to dom/svg/SVGLength.h diff --git a/content/svg/content/src/SVGLengthList.cpp b/dom/svg/SVGLengthList.cpp similarity index 100% rename from content/svg/content/src/SVGLengthList.cpp rename to dom/svg/SVGLengthList.cpp diff --git a/content/svg/content/src/SVGLengthList.h b/dom/svg/SVGLengthList.h similarity index 100% rename from content/svg/content/src/SVGLengthList.h rename to dom/svg/SVGLengthList.h diff --git a/content/svg/content/src/SVGLengthListSMILType.cpp b/dom/svg/SVGLengthListSMILType.cpp similarity index 100% rename from content/svg/content/src/SVGLengthListSMILType.cpp rename to dom/svg/SVGLengthListSMILType.cpp diff --git a/content/svg/content/src/SVGLengthListSMILType.h b/dom/svg/SVGLengthListSMILType.h similarity index 100% rename from content/svg/content/src/SVGLengthListSMILType.h rename to dom/svg/SVGLengthListSMILType.h diff --git a/content/svg/content/src/SVGLineElement.cpp b/dom/svg/SVGLineElement.cpp similarity index 100% rename from content/svg/content/src/SVGLineElement.cpp rename to dom/svg/SVGLineElement.cpp diff --git a/content/svg/content/src/SVGLineElement.h b/dom/svg/SVGLineElement.h similarity index 100% rename from content/svg/content/src/SVGLineElement.h rename to dom/svg/SVGLineElement.h diff --git a/content/svg/content/src/SVGMPathElement.cpp b/dom/svg/SVGMPathElement.cpp similarity index 100% rename from content/svg/content/src/SVGMPathElement.cpp rename to dom/svg/SVGMPathElement.cpp diff --git a/content/svg/content/src/SVGMPathElement.h b/dom/svg/SVGMPathElement.h similarity index 100% rename from content/svg/content/src/SVGMPathElement.h rename to dom/svg/SVGMPathElement.h diff --git a/content/svg/content/src/SVGMarkerElement.cpp b/dom/svg/SVGMarkerElement.cpp similarity index 100% rename from content/svg/content/src/SVGMarkerElement.cpp rename to dom/svg/SVGMarkerElement.cpp diff --git a/content/svg/content/src/SVGMarkerElement.h b/dom/svg/SVGMarkerElement.h similarity index 100% rename from content/svg/content/src/SVGMarkerElement.h rename to dom/svg/SVGMarkerElement.h diff --git a/content/svg/content/src/SVGMaskElement.cpp b/dom/svg/SVGMaskElement.cpp similarity index 100% rename from content/svg/content/src/SVGMaskElement.cpp rename to dom/svg/SVGMaskElement.cpp diff --git a/content/svg/content/src/SVGMaskElement.h b/dom/svg/SVGMaskElement.h similarity index 100% rename from content/svg/content/src/SVGMaskElement.h rename to dom/svg/SVGMaskElement.h diff --git a/content/svg/content/src/SVGMatrix.cpp b/dom/svg/SVGMatrix.cpp similarity index 100% rename from content/svg/content/src/SVGMatrix.cpp rename to dom/svg/SVGMatrix.cpp diff --git a/content/svg/content/src/SVGMatrix.h b/dom/svg/SVGMatrix.h similarity index 100% rename from content/svg/content/src/SVGMatrix.h rename to dom/svg/SVGMatrix.h diff --git a/content/svg/content/src/SVGMetadataElement.cpp b/dom/svg/SVGMetadataElement.cpp similarity index 100% rename from content/svg/content/src/SVGMetadataElement.cpp rename to dom/svg/SVGMetadataElement.cpp diff --git a/content/svg/content/src/SVGMetadataElement.h b/dom/svg/SVGMetadataElement.h similarity index 100% rename from content/svg/content/src/SVGMetadataElement.h rename to dom/svg/SVGMetadataElement.h diff --git a/content/svg/content/src/SVGMotionSMILAnimationFunction.cpp b/dom/svg/SVGMotionSMILAnimationFunction.cpp similarity index 100% rename from content/svg/content/src/SVGMotionSMILAnimationFunction.cpp rename to dom/svg/SVGMotionSMILAnimationFunction.cpp diff --git a/content/svg/content/src/SVGMotionSMILAnimationFunction.h b/dom/svg/SVGMotionSMILAnimationFunction.h similarity index 100% rename from content/svg/content/src/SVGMotionSMILAnimationFunction.h rename to dom/svg/SVGMotionSMILAnimationFunction.h diff --git a/content/svg/content/src/SVGMotionSMILAttr.cpp b/dom/svg/SVGMotionSMILAttr.cpp similarity index 100% rename from content/svg/content/src/SVGMotionSMILAttr.cpp rename to dom/svg/SVGMotionSMILAttr.cpp diff --git a/content/svg/content/src/SVGMotionSMILAttr.h b/dom/svg/SVGMotionSMILAttr.h similarity index 100% rename from content/svg/content/src/SVGMotionSMILAttr.h rename to dom/svg/SVGMotionSMILAttr.h diff --git a/content/svg/content/src/SVGMotionSMILPathUtils.cpp b/dom/svg/SVGMotionSMILPathUtils.cpp similarity index 100% rename from content/svg/content/src/SVGMotionSMILPathUtils.cpp rename to dom/svg/SVGMotionSMILPathUtils.cpp diff --git a/content/svg/content/src/SVGMotionSMILPathUtils.h b/dom/svg/SVGMotionSMILPathUtils.h similarity index 100% rename from content/svg/content/src/SVGMotionSMILPathUtils.h rename to dom/svg/SVGMotionSMILPathUtils.h diff --git a/content/svg/content/src/SVGMotionSMILType.cpp b/dom/svg/SVGMotionSMILType.cpp similarity index 100% rename from content/svg/content/src/SVGMotionSMILType.cpp rename to dom/svg/SVGMotionSMILType.cpp diff --git a/content/svg/content/src/SVGMotionSMILType.h b/dom/svg/SVGMotionSMILType.h similarity index 100% rename from content/svg/content/src/SVGMotionSMILType.h rename to dom/svg/SVGMotionSMILType.h diff --git a/content/svg/content/src/SVGNumberList.cpp b/dom/svg/SVGNumberList.cpp similarity index 100% rename from content/svg/content/src/SVGNumberList.cpp rename to dom/svg/SVGNumberList.cpp diff --git a/content/svg/content/src/SVGNumberList.h b/dom/svg/SVGNumberList.h similarity index 100% rename from content/svg/content/src/SVGNumberList.h rename to dom/svg/SVGNumberList.h diff --git a/content/svg/content/src/SVGNumberListSMILType.cpp b/dom/svg/SVGNumberListSMILType.cpp similarity index 100% rename from content/svg/content/src/SVGNumberListSMILType.cpp rename to dom/svg/SVGNumberListSMILType.cpp diff --git a/content/svg/content/src/SVGNumberListSMILType.h b/dom/svg/SVGNumberListSMILType.h similarity index 100% rename from content/svg/content/src/SVGNumberListSMILType.h rename to dom/svg/SVGNumberListSMILType.h diff --git a/content/svg/content/src/SVGNumberPairSMILType.cpp b/dom/svg/SVGNumberPairSMILType.cpp similarity index 100% rename from content/svg/content/src/SVGNumberPairSMILType.cpp rename to dom/svg/SVGNumberPairSMILType.cpp diff --git a/content/svg/content/src/SVGNumberPairSMILType.h b/dom/svg/SVGNumberPairSMILType.h similarity index 100% rename from content/svg/content/src/SVGNumberPairSMILType.h rename to dom/svg/SVGNumberPairSMILType.h diff --git a/content/svg/content/src/SVGOrientSMILType.cpp b/dom/svg/SVGOrientSMILType.cpp similarity index 100% rename from content/svg/content/src/SVGOrientSMILType.cpp rename to dom/svg/SVGOrientSMILType.cpp diff --git a/content/svg/content/src/SVGOrientSMILType.h b/dom/svg/SVGOrientSMILType.h similarity index 100% rename from content/svg/content/src/SVGOrientSMILType.h rename to dom/svg/SVGOrientSMILType.h diff --git a/content/svg/content/src/SVGPathData.cpp b/dom/svg/SVGPathData.cpp similarity index 100% rename from content/svg/content/src/SVGPathData.cpp rename to dom/svg/SVGPathData.cpp diff --git a/content/svg/content/src/SVGPathData.h b/dom/svg/SVGPathData.h similarity index 100% rename from content/svg/content/src/SVGPathData.h rename to dom/svg/SVGPathData.h diff --git a/content/svg/content/src/SVGPathElement.cpp b/dom/svg/SVGPathElement.cpp similarity index 100% rename from content/svg/content/src/SVGPathElement.cpp rename to dom/svg/SVGPathElement.cpp diff --git a/content/svg/content/src/SVGPathElement.h b/dom/svg/SVGPathElement.h similarity index 100% rename from content/svg/content/src/SVGPathElement.h rename to dom/svg/SVGPathElement.h diff --git a/content/svg/content/src/SVGPathSegListSMILType.cpp b/dom/svg/SVGPathSegListSMILType.cpp similarity index 100% rename from content/svg/content/src/SVGPathSegListSMILType.cpp rename to dom/svg/SVGPathSegListSMILType.cpp diff --git a/content/svg/content/src/SVGPathSegListSMILType.h b/dom/svg/SVGPathSegListSMILType.h similarity index 100% rename from content/svg/content/src/SVGPathSegListSMILType.h rename to dom/svg/SVGPathSegListSMILType.h diff --git a/content/svg/content/src/SVGPathSegUtils.cpp b/dom/svg/SVGPathSegUtils.cpp similarity index 100% rename from content/svg/content/src/SVGPathSegUtils.cpp rename to dom/svg/SVGPathSegUtils.cpp diff --git a/content/svg/content/src/SVGPathSegUtils.h b/dom/svg/SVGPathSegUtils.h similarity index 100% rename from content/svg/content/src/SVGPathSegUtils.h rename to dom/svg/SVGPathSegUtils.h diff --git a/content/svg/content/src/SVGPatternElement.cpp b/dom/svg/SVGPatternElement.cpp similarity index 100% rename from content/svg/content/src/SVGPatternElement.cpp rename to dom/svg/SVGPatternElement.cpp diff --git a/content/svg/content/src/SVGPatternElement.h b/dom/svg/SVGPatternElement.h similarity index 100% rename from content/svg/content/src/SVGPatternElement.h rename to dom/svg/SVGPatternElement.h diff --git a/content/svg/content/src/SVGPoint.h b/dom/svg/SVGPoint.h similarity index 100% rename from content/svg/content/src/SVGPoint.h rename to dom/svg/SVGPoint.h diff --git a/content/svg/content/src/SVGPointList.cpp b/dom/svg/SVGPointList.cpp similarity index 100% rename from content/svg/content/src/SVGPointList.cpp rename to dom/svg/SVGPointList.cpp diff --git a/content/svg/content/src/SVGPointList.h b/dom/svg/SVGPointList.h similarity index 100% rename from content/svg/content/src/SVGPointList.h rename to dom/svg/SVGPointList.h diff --git a/content/svg/content/src/SVGPointListSMILType.cpp b/dom/svg/SVGPointListSMILType.cpp similarity index 100% rename from content/svg/content/src/SVGPointListSMILType.cpp rename to dom/svg/SVGPointListSMILType.cpp diff --git a/content/svg/content/src/SVGPointListSMILType.h b/dom/svg/SVGPointListSMILType.h similarity index 100% rename from content/svg/content/src/SVGPointListSMILType.h rename to dom/svg/SVGPointListSMILType.h diff --git a/content/svg/content/src/SVGPolygonElement.cpp b/dom/svg/SVGPolygonElement.cpp similarity index 100% rename from content/svg/content/src/SVGPolygonElement.cpp rename to dom/svg/SVGPolygonElement.cpp diff --git a/content/svg/content/src/SVGPolygonElement.h b/dom/svg/SVGPolygonElement.h similarity index 100% rename from content/svg/content/src/SVGPolygonElement.h rename to dom/svg/SVGPolygonElement.h diff --git a/content/svg/content/src/SVGPolylineElement.cpp b/dom/svg/SVGPolylineElement.cpp similarity index 100% rename from content/svg/content/src/SVGPolylineElement.cpp rename to dom/svg/SVGPolylineElement.cpp diff --git a/content/svg/content/src/SVGPolylineElement.h b/dom/svg/SVGPolylineElement.h similarity index 100% rename from content/svg/content/src/SVGPolylineElement.h rename to dom/svg/SVGPolylineElement.h diff --git a/content/svg/content/src/SVGPreserveAspectRatio.cpp b/dom/svg/SVGPreserveAspectRatio.cpp similarity index 100% rename from content/svg/content/src/SVGPreserveAspectRatio.cpp rename to dom/svg/SVGPreserveAspectRatio.cpp diff --git a/content/svg/content/src/SVGPreserveAspectRatio.h b/dom/svg/SVGPreserveAspectRatio.h similarity index 100% rename from content/svg/content/src/SVGPreserveAspectRatio.h rename to dom/svg/SVGPreserveAspectRatio.h diff --git a/content/svg/content/src/SVGRect.cpp b/dom/svg/SVGRect.cpp similarity index 100% rename from content/svg/content/src/SVGRect.cpp rename to dom/svg/SVGRect.cpp diff --git a/content/svg/content/src/SVGRect.h b/dom/svg/SVGRect.h similarity index 100% rename from content/svg/content/src/SVGRect.h rename to dom/svg/SVGRect.h diff --git a/content/svg/content/src/SVGRectElement.cpp b/dom/svg/SVGRectElement.cpp similarity index 100% rename from content/svg/content/src/SVGRectElement.cpp rename to dom/svg/SVGRectElement.cpp diff --git a/content/svg/content/src/SVGRectElement.h b/dom/svg/SVGRectElement.h similarity index 100% rename from content/svg/content/src/SVGRectElement.h rename to dom/svg/SVGRectElement.h diff --git a/content/svg/content/src/SVGSVGElement.cpp b/dom/svg/SVGSVGElement.cpp similarity index 100% rename from content/svg/content/src/SVGSVGElement.cpp rename to dom/svg/SVGSVGElement.cpp diff --git a/content/svg/content/src/SVGSVGElement.h b/dom/svg/SVGSVGElement.h similarity index 100% rename from content/svg/content/src/SVGSVGElement.h rename to dom/svg/SVGSVGElement.h diff --git a/content/svg/content/src/SVGScriptElement.cpp b/dom/svg/SVGScriptElement.cpp similarity index 100% rename from content/svg/content/src/SVGScriptElement.cpp rename to dom/svg/SVGScriptElement.cpp diff --git a/content/svg/content/src/SVGScriptElement.h b/dom/svg/SVGScriptElement.h similarity index 100% rename from content/svg/content/src/SVGScriptElement.h rename to dom/svg/SVGScriptElement.h diff --git a/content/svg/content/src/SVGSetElement.cpp b/dom/svg/SVGSetElement.cpp similarity index 100% rename from content/svg/content/src/SVGSetElement.cpp rename to dom/svg/SVGSetElement.cpp diff --git a/content/svg/content/src/SVGSetElement.h b/dom/svg/SVGSetElement.h similarity index 100% rename from content/svg/content/src/SVGSetElement.h rename to dom/svg/SVGSetElement.h diff --git a/content/svg/content/src/SVGStopElement.cpp b/dom/svg/SVGStopElement.cpp similarity index 100% rename from content/svg/content/src/SVGStopElement.cpp rename to dom/svg/SVGStopElement.cpp diff --git a/content/svg/content/src/SVGStopElement.h b/dom/svg/SVGStopElement.h similarity index 100% rename from content/svg/content/src/SVGStopElement.h rename to dom/svg/SVGStopElement.h diff --git a/content/svg/content/src/SVGStringList.cpp b/dom/svg/SVGStringList.cpp similarity index 100% rename from content/svg/content/src/SVGStringList.cpp rename to dom/svg/SVGStringList.cpp diff --git a/content/svg/content/src/SVGStringList.h b/dom/svg/SVGStringList.h similarity index 100% rename from content/svg/content/src/SVGStringList.h rename to dom/svg/SVGStringList.h diff --git a/content/svg/content/src/SVGStyleElement.cpp b/dom/svg/SVGStyleElement.cpp similarity index 100% rename from content/svg/content/src/SVGStyleElement.cpp rename to dom/svg/SVGStyleElement.cpp diff --git a/content/svg/content/src/SVGStyleElement.h b/dom/svg/SVGStyleElement.h similarity index 100% rename from content/svg/content/src/SVGStyleElement.h rename to dom/svg/SVGStyleElement.h diff --git a/content/svg/content/src/SVGSwitchElement.cpp b/dom/svg/SVGSwitchElement.cpp similarity index 100% rename from content/svg/content/src/SVGSwitchElement.cpp rename to dom/svg/SVGSwitchElement.cpp diff --git a/content/svg/content/src/SVGSwitchElement.h b/dom/svg/SVGSwitchElement.h similarity index 100% rename from content/svg/content/src/SVGSwitchElement.h rename to dom/svg/SVGSwitchElement.h diff --git a/content/svg/content/src/SVGSymbolElement.cpp b/dom/svg/SVGSymbolElement.cpp similarity index 100% rename from content/svg/content/src/SVGSymbolElement.cpp rename to dom/svg/SVGSymbolElement.cpp diff --git a/content/svg/content/src/SVGSymbolElement.h b/dom/svg/SVGSymbolElement.h similarity index 100% rename from content/svg/content/src/SVGSymbolElement.h rename to dom/svg/SVGSymbolElement.h diff --git a/content/svg/content/src/SVGTSpanElement.cpp b/dom/svg/SVGTSpanElement.cpp similarity index 100% rename from content/svg/content/src/SVGTSpanElement.cpp rename to dom/svg/SVGTSpanElement.cpp diff --git a/content/svg/content/src/SVGTSpanElement.h b/dom/svg/SVGTSpanElement.h similarity index 100% rename from content/svg/content/src/SVGTSpanElement.h rename to dom/svg/SVGTSpanElement.h diff --git a/content/svg/content/src/SVGTagList.h b/dom/svg/SVGTagList.h similarity index 100% rename from content/svg/content/src/SVGTagList.h rename to dom/svg/SVGTagList.h diff --git a/content/svg/content/src/SVGTests.cpp b/dom/svg/SVGTests.cpp similarity index 100% rename from content/svg/content/src/SVGTests.cpp rename to dom/svg/SVGTests.cpp diff --git a/content/svg/content/src/SVGTests.h b/dom/svg/SVGTests.h similarity index 100% rename from content/svg/content/src/SVGTests.h rename to dom/svg/SVGTests.h diff --git a/content/svg/content/src/SVGTextContentElement.cpp b/dom/svg/SVGTextContentElement.cpp similarity index 100% rename from content/svg/content/src/SVGTextContentElement.cpp rename to dom/svg/SVGTextContentElement.cpp diff --git a/content/svg/content/src/SVGTextContentElement.h b/dom/svg/SVGTextContentElement.h similarity index 100% rename from content/svg/content/src/SVGTextContentElement.h rename to dom/svg/SVGTextContentElement.h diff --git a/content/svg/content/src/SVGTextElement.cpp b/dom/svg/SVGTextElement.cpp similarity index 100% rename from content/svg/content/src/SVGTextElement.cpp rename to dom/svg/SVGTextElement.cpp diff --git a/content/svg/content/src/SVGTextElement.h b/dom/svg/SVGTextElement.h similarity index 100% rename from content/svg/content/src/SVGTextElement.h rename to dom/svg/SVGTextElement.h diff --git a/content/svg/content/src/SVGTextPathElement.cpp b/dom/svg/SVGTextPathElement.cpp similarity index 100% rename from content/svg/content/src/SVGTextPathElement.cpp rename to dom/svg/SVGTextPathElement.cpp diff --git a/content/svg/content/src/SVGTextPathElement.h b/dom/svg/SVGTextPathElement.h similarity index 100% rename from content/svg/content/src/SVGTextPathElement.h rename to dom/svg/SVGTextPathElement.h diff --git a/content/svg/content/src/SVGTextPositioningElement.cpp b/dom/svg/SVGTextPositioningElement.cpp similarity index 100% rename from content/svg/content/src/SVGTextPositioningElement.cpp rename to dom/svg/SVGTextPositioningElement.cpp diff --git a/content/svg/content/src/SVGTextPositioningElement.h b/dom/svg/SVGTextPositioningElement.h similarity index 100% rename from content/svg/content/src/SVGTextPositioningElement.h rename to dom/svg/SVGTextPositioningElement.h diff --git a/content/svg/content/src/SVGTitleElement.cpp b/dom/svg/SVGTitleElement.cpp similarity index 100% rename from content/svg/content/src/SVGTitleElement.cpp rename to dom/svg/SVGTitleElement.cpp diff --git a/content/svg/content/src/SVGTitleElement.h b/dom/svg/SVGTitleElement.h similarity index 100% rename from content/svg/content/src/SVGTitleElement.h rename to dom/svg/SVGTitleElement.h diff --git a/content/svg/content/src/SVGTransform.cpp b/dom/svg/SVGTransform.cpp similarity index 100% rename from content/svg/content/src/SVGTransform.cpp rename to dom/svg/SVGTransform.cpp diff --git a/content/svg/content/src/SVGTransform.h b/dom/svg/SVGTransform.h similarity index 100% rename from content/svg/content/src/SVGTransform.h rename to dom/svg/SVGTransform.h diff --git a/content/svg/content/src/SVGTransformList.cpp b/dom/svg/SVGTransformList.cpp similarity index 100% rename from content/svg/content/src/SVGTransformList.cpp rename to dom/svg/SVGTransformList.cpp diff --git a/content/svg/content/src/SVGTransformList.h b/dom/svg/SVGTransformList.h similarity index 100% rename from content/svg/content/src/SVGTransformList.h rename to dom/svg/SVGTransformList.h diff --git a/content/svg/content/src/SVGTransformListParser.cpp b/dom/svg/SVGTransformListParser.cpp similarity index 100% rename from content/svg/content/src/SVGTransformListParser.cpp rename to dom/svg/SVGTransformListParser.cpp diff --git a/content/svg/content/src/SVGTransformListParser.h b/dom/svg/SVGTransformListParser.h similarity index 100% rename from content/svg/content/src/SVGTransformListParser.h rename to dom/svg/SVGTransformListParser.h diff --git a/content/svg/content/src/SVGTransformListSMILType.cpp b/dom/svg/SVGTransformListSMILType.cpp similarity index 100% rename from content/svg/content/src/SVGTransformListSMILType.cpp rename to dom/svg/SVGTransformListSMILType.cpp diff --git a/content/svg/content/src/SVGTransformListSMILType.h b/dom/svg/SVGTransformListSMILType.h similarity index 100% rename from content/svg/content/src/SVGTransformListSMILType.h rename to dom/svg/SVGTransformListSMILType.h diff --git a/content/svg/content/src/SVGTransformableElement.cpp b/dom/svg/SVGTransformableElement.cpp similarity index 100% rename from content/svg/content/src/SVGTransformableElement.cpp rename to dom/svg/SVGTransformableElement.cpp diff --git a/content/svg/content/src/SVGTransformableElement.h b/dom/svg/SVGTransformableElement.h similarity index 100% rename from content/svg/content/src/SVGTransformableElement.h rename to dom/svg/SVGTransformableElement.h diff --git a/content/svg/content/src/SVGUseElement.cpp b/dom/svg/SVGUseElement.cpp similarity index 100% rename from content/svg/content/src/SVGUseElement.cpp rename to dom/svg/SVGUseElement.cpp diff --git a/content/svg/content/src/SVGUseElement.h b/dom/svg/SVGUseElement.h similarity index 100% rename from content/svg/content/src/SVGUseElement.h rename to dom/svg/SVGUseElement.h diff --git a/content/svg/content/src/SVGViewBoxSMILType.cpp b/dom/svg/SVGViewBoxSMILType.cpp similarity index 100% rename from content/svg/content/src/SVGViewBoxSMILType.cpp rename to dom/svg/SVGViewBoxSMILType.cpp diff --git a/content/svg/content/src/SVGViewBoxSMILType.h b/dom/svg/SVGViewBoxSMILType.h similarity index 100% rename from content/svg/content/src/SVGViewBoxSMILType.h rename to dom/svg/SVGViewBoxSMILType.h diff --git a/content/svg/content/src/SVGViewElement.cpp b/dom/svg/SVGViewElement.cpp similarity index 100% rename from content/svg/content/src/SVGViewElement.cpp rename to dom/svg/SVGViewElement.cpp diff --git a/content/svg/content/src/SVGViewElement.h b/dom/svg/SVGViewElement.h similarity index 100% rename from content/svg/content/src/SVGViewElement.h rename to dom/svg/SVGViewElement.h diff --git a/content/svg/content/src/SVGZoomEvent.cpp b/dom/svg/SVGZoomEvent.cpp similarity index 100% rename from content/svg/content/src/SVGZoomEvent.cpp rename to dom/svg/SVGZoomEvent.cpp diff --git a/content/svg/content/src/SVGZoomEvent.h b/dom/svg/SVGZoomEvent.h similarity index 100% rename from content/svg/content/src/SVGZoomEvent.h rename to dom/svg/SVGZoomEvent.h diff --git a/content/svg/content/src/crashtests/307322-1.svg b/dom/svg/crashtests/307322-1.svg similarity index 100% rename from content/svg/content/src/crashtests/307322-1.svg rename to dom/svg/crashtests/307322-1.svg diff --git a/content/svg/content/src/crashtests/327705-1.svg b/dom/svg/crashtests/327705-1.svg similarity index 100% rename from content/svg/content/src/crashtests/327705-1.svg rename to dom/svg/crashtests/327705-1.svg diff --git a/content/svg/content/src/crashtests/336994-1.html b/dom/svg/crashtests/336994-1.html similarity index 100% rename from content/svg/content/src/crashtests/336994-1.html rename to dom/svg/crashtests/336994-1.html diff --git a/content/svg/content/src/crashtests/344888-1.svg b/dom/svg/crashtests/344888-1.svg similarity index 100% rename from content/svg/content/src/crashtests/344888-1.svg rename to dom/svg/crashtests/344888-1.svg diff --git a/content/svg/content/src/crashtests/345445-1.svg b/dom/svg/crashtests/345445-1.svg similarity index 100% rename from content/svg/content/src/crashtests/345445-1.svg rename to dom/svg/crashtests/345445-1.svg diff --git a/content/svg/content/src/crashtests/360836-1.svg b/dom/svg/crashtests/360836-1.svg similarity index 100% rename from content/svg/content/src/crashtests/360836-1.svg rename to dom/svg/crashtests/360836-1.svg diff --git a/content/svg/content/src/crashtests/367357-1.xhtml b/dom/svg/crashtests/367357-1.xhtml similarity index 100% rename from content/svg/content/src/crashtests/367357-1.xhtml rename to dom/svg/crashtests/367357-1.xhtml diff --git a/content/svg/content/src/crashtests/369051-1.svg b/dom/svg/crashtests/369051-1.svg similarity index 100% rename from content/svg/content/src/crashtests/369051-1.svg rename to dom/svg/crashtests/369051-1.svg diff --git a/content/svg/content/src/crashtests/369249-1.svg b/dom/svg/crashtests/369249-1.svg similarity index 100% rename from content/svg/content/src/crashtests/369249-1.svg rename to dom/svg/crashtests/369249-1.svg diff --git a/content/svg/content/src/crashtests/369291-1.svg b/dom/svg/crashtests/369291-1.svg similarity index 100% rename from content/svg/content/src/crashtests/369291-1.svg rename to dom/svg/crashtests/369291-1.svg diff --git a/content/svg/content/src/crashtests/369291-2.svg b/dom/svg/crashtests/369291-2.svg similarity index 100% rename from content/svg/content/src/crashtests/369291-2.svg rename to dom/svg/crashtests/369291-2.svg diff --git a/content/svg/content/src/crashtests/369568-1.svg b/dom/svg/crashtests/369568-1.svg similarity index 100% rename from content/svg/content/src/crashtests/369568-1.svg rename to dom/svg/crashtests/369568-1.svg diff --git a/content/svg/content/src/crashtests/372046-1.svg b/dom/svg/crashtests/372046-1.svg similarity index 100% rename from content/svg/content/src/crashtests/372046-1.svg rename to dom/svg/crashtests/372046-1.svg diff --git a/content/svg/content/src/crashtests/372046-2.svg b/dom/svg/crashtests/372046-2.svg similarity index 100% rename from content/svg/content/src/crashtests/372046-2.svg rename to dom/svg/crashtests/372046-2.svg diff --git a/content/svg/content/src/crashtests/374882-1.svg b/dom/svg/crashtests/374882-1.svg similarity index 100% rename from content/svg/content/src/crashtests/374882-1.svg rename to dom/svg/crashtests/374882-1.svg diff --git a/content/svg/content/src/crashtests/380101-1.svg b/dom/svg/crashtests/380101-1.svg similarity index 100% rename from content/svg/content/src/crashtests/380101-1.svg rename to dom/svg/crashtests/380101-1.svg diff --git a/content/svg/content/src/crashtests/381777-1.svg b/dom/svg/crashtests/381777-1.svg similarity index 100% rename from content/svg/content/src/crashtests/381777-1.svg rename to dom/svg/crashtests/381777-1.svg diff --git a/content/svg/content/src/crashtests/383685-1.svg b/dom/svg/crashtests/383685-1.svg similarity index 100% rename from content/svg/content/src/crashtests/383685-1.svg rename to dom/svg/crashtests/383685-1.svg diff --git a/content/svg/content/src/crashtests/385096.html b/dom/svg/crashtests/385096.html similarity index 100% rename from content/svg/content/src/crashtests/385096.html rename to dom/svg/crashtests/385096.html diff --git a/content/svg/content/src/crashtests/385554-1.html b/dom/svg/crashtests/385554-1.html similarity index 100% rename from content/svg/content/src/crashtests/385554-1.html rename to dom/svg/crashtests/385554-1.html diff --git a/content/svg/content/src/crashtests/385554-2.xul b/dom/svg/crashtests/385554-2.xul similarity index 100% rename from content/svg/content/src/crashtests/385554-2.xul rename to dom/svg/crashtests/385554-2.xul diff --git a/content/svg/content/src/crashtests/388712-1.svg b/dom/svg/crashtests/388712-1.svg similarity index 100% rename from content/svg/content/src/crashtests/388712-1.svg rename to dom/svg/crashtests/388712-1.svg diff --git a/content/svg/content/src/crashtests/395616-1.html b/dom/svg/crashtests/395616-1.html similarity index 100% rename from content/svg/content/src/crashtests/395616-1.html rename to dom/svg/crashtests/395616-1.html diff --git a/content/svg/content/src/crashtests/396618-1.html b/dom/svg/crashtests/396618-1.html similarity index 100% rename from content/svg/content/src/crashtests/396618-1.html rename to dom/svg/crashtests/396618-1.html diff --git a/content/svg/content/src/crashtests/397017-1.html b/dom/svg/crashtests/397017-1.html similarity index 100% rename from content/svg/content/src/crashtests/397017-1.html rename to dom/svg/crashtests/397017-1.html diff --git a/content/svg/content/src/crashtests/397551-1.svg b/dom/svg/crashtests/397551-1.svg similarity index 100% rename from content/svg/content/src/crashtests/397551-1.svg rename to dom/svg/crashtests/397551-1.svg diff --git a/content/svg/content/src/crashtests/397704-1.svg b/dom/svg/crashtests/397704-1.svg similarity index 100% rename from content/svg/content/src/crashtests/397704-1.svg rename to dom/svg/crashtests/397704-1.svg diff --git a/content/svg/content/src/crashtests/398926-both-different.svg b/dom/svg/crashtests/398926-both-different.svg similarity index 100% rename from content/svg/content/src/crashtests/398926-both-different.svg rename to dom/svg/crashtests/398926-both-different.svg diff --git a/content/svg/content/src/crashtests/398926-both-same.svg b/dom/svg/crashtests/398926-both-same.svg similarity index 100% rename from content/svg/content/src/crashtests/398926-both-same.svg rename to dom/svg/crashtests/398926-both-same.svg diff --git a/content/svg/content/src/crashtests/398926-fill.svg b/dom/svg/crashtests/398926-fill.svg similarity index 100% rename from content/svg/content/src/crashtests/398926-fill.svg rename to dom/svg/crashtests/398926-fill.svg diff --git a/content/svg/content/src/crashtests/398926-stroke.svg b/dom/svg/crashtests/398926-stroke.svg similarity index 100% rename from content/svg/content/src/crashtests/398926-stroke.svg rename to dom/svg/crashtests/398926-stroke.svg diff --git a/content/svg/content/src/crashtests/405639-1.svg b/dom/svg/crashtests/405639-1.svg similarity index 100% rename from content/svg/content/src/crashtests/405639-1.svg rename to dom/svg/crashtests/405639-1.svg diff --git a/content/svg/content/src/crashtests/406361-1.html b/dom/svg/crashtests/406361-1.html similarity index 100% rename from content/svg/content/src/crashtests/406361-1.html rename to dom/svg/crashtests/406361-1.html diff --git a/content/svg/content/src/crashtests/409811-1.html b/dom/svg/crashtests/409811-1.html similarity index 100% rename from content/svg/content/src/crashtests/409811-1.html rename to dom/svg/crashtests/409811-1.html diff --git a/content/svg/content/src/crashtests/410659-1.svg b/dom/svg/crashtests/410659-1.svg similarity index 100% rename from content/svg/content/src/crashtests/410659-1.svg rename to dom/svg/crashtests/410659-1.svg diff --git a/content/svg/content/src/crashtests/410659-2.svg b/dom/svg/crashtests/410659-2.svg similarity index 100% rename from content/svg/content/src/crashtests/410659-2.svg rename to dom/svg/crashtests/410659-2.svg diff --git a/content/svg/content/src/crashtests/410659-3.svg b/dom/svg/crashtests/410659-3.svg similarity index 100% rename from content/svg/content/src/crashtests/410659-3.svg rename to dom/svg/crashtests/410659-3.svg diff --git a/content/svg/content/src/crashtests/412104-1.svg b/dom/svg/crashtests/412104-1.svg similarity index 100% rename from content/svg/content/src/crashtests/412104-1.svg rename to dom/svg/crashtests/412104-1.svg diff --git a/content/svg/content/src/crashtests/413174-1.svg b/dom/svg/crashtests/413174-1.svg similarity index 100% rename from content/svg/content/src/crashtests/413174-1.svg rename to dom/svg/crashtests/413174-1.svg diff --git a/content/svg/content/src/crashtests/414188-1.svg b/dom/svg/crashtests/414188-1.svg similarity index 100% rename from content/svg/content/src/crashtests/414188-1.svg rename to dom/svg/crashtests/414188-1.svg diff --git a/content/svg/content/src/crashtests/427325-1.svg b/dom/svg/crashtests/427325-1.svg similarity index 100% rename from content/svg/content/src/crashtests/427325-1.svg rename to dom/svg/crashtests/427325-1.svg diff --git a/content/svg/content/src/crashtests/428228-1.svg b/dom/svg/crashtests/428228-1.svg similarity index 100% rename from content/svg/content/src/crashtests/428228-1.svg rename to dom/svg/crashtests/428228-1.svg diff --git a/content/svg/content/src/crashtests/428841-1.svg b/dom/svg/crashtests/428841-1.svg similarity index 100% rename from content/svg/content/src/crashtests/428841-1.svg rename to dom/svg/crashtests/428841-1.svg diff --git a/content/svg/content/src/crashtests/435209-1.svg b/dom/svg/crashtests/435209-1.svg similarity index 100% rename from content/svg/content/src/crashtests/435209-1.svg rename to dom/svg/crashtests/435209-1.svg diff --git a/content/svg/content/src/crashtests/436418-mpathRoot-1.svg b/dom/svg/crashtests/436418-mpathRoot-1.svg similarity index 100% rename from content/svg/content/src/crashtests/436418-mpathRoot-1.svg rename to dom/svg/crashtests/436418-mpathRoot-1.svg diff --git a/content/svg/content/src/crashtests/448244-1.svg b/dom/svg/crashtests/448244-1.svg similarity index 100% rename from content/svg/content/src/crashtests/448244-1.svg rename to dom/svg/crashtests/448244-1.svg diff --git a/content/svg/content/src/crashtests/466576-1.xhtml b/dom/svg/crashtests/466576-1.xhtml similarity index 100% rename from content/svg/content/src/crashtests/466576-1.xhtml rename to dom/svg/crashtests/466576-1.xhtml diff --git a/content/svg/content/src/crashtests/499879-1.svg b/dom/svg/crashtests/499879-1.svg similarity index 100% rename from content/svg/content/src/crashtests/499879-1.svg rename to dom/svg/crashtests/499879-1.svg diff --git a/content/svg/content/src/crashtests/535691-1.svg b/dom/svg/crashtests/535691-1.svg similarity index 100% rename from content/svg/content/src/crashtests/535691-1.svg rename to dom/svg/crashtests/535691-1.svg diff --git a/content/svg/content/src/crashtests/539167-1.svg b/dom/svg/crashtests/539167-1.svg similarity index 100% rename from content/svg/content/src/crashtests/539167-1.svg rename to dom/svg/crashtests/539167-1.svg diff --git a/content/svg/content/src/crashtests/573316-1.svg b/dom/svg/crashtests/573316-1.svg similarity index 100% rename from content/svg/content/src/crashtests/573316-1.svg rename to dom/svg/crashtests/573316-1.svg diff --git a/content/svg/content/src/crashtests/579356-1.svg b/dom/svg/crashtests/579356-1.svg similarity index 100% rename from content/svg/content/src/crashtests/579356-1.svg rename to dom/svg/crashtests/579356-1.svg diff --git a/content/svg/content/src/crashtests/579356-2.svg b/dom/svg/crashtests/579356-2.svg similarity index 100% rename from content/svg/content/src/crashtests/579356-2.svg rename to dom/svg/crashtests/579356-2.svg diff --git a/content/svg/content/src/crashtests/595608-1.svg b/dom/svg/crashtests/595608-1.svg similarity index 100% rename from content/svg/content/src/crashtests/595608-1.svg rename to dom/svg/crashtests/595608-1.svg diff --git a/content/svg/content/src/crashtests/601251-1.html b/dom/svg/crashtests/601251-1.html similarity index 100% rename from content/svg/content/src/crashtests/601251-1.html rename to dom/svg/crashtests/601251-1.html diff --git a/content/svg/content/src/crashtests/601406-1.svg b/dom/svg/crashtests/601406-1.svg similarity index 100% rename from content/svg/content/src/crashtests/601406-1.svg rename to dom/svg/crashtests/601406-1.svg diff --git a/content/svg/content/src/crashtests/603145-1.svg b/dom/svg/crashtests/603145-1.svg similarity index 100% rename from content/svg/content/src/crashtests/603145-1.svg rename to dom/svg/crashtests/603145-1.svg diff --git a/content/svg/content/src/crashtests/613899-1.svg b/dom/svg/crashtests/613899-1.svg similarity index 100% rename from content/svg/content/src/crashtests/613899-1.svg rename to dom/svg/crashtests/613899-1.svg diff --git a/content/svg/content/src/crashtests/613899-2.svg b/dom/svg/crashtests/613899-2.svg similarity index 100% rename from content/svg/content/src/crashtests/613899-2.svg rename to dom/svg/crashtests/613899-2.svg diff --git a/content/svg/content/src/crashtests/719779-1.svg b/dom/svg/crashtests/719779-1.svg similarity index 100% rename from content/svg/content/src/crashtests/719779-1.svg rename to dom/svg/crashtests/719779-1.svg diff --git a/content/svg/content/src/crashtests/723441-1.html b/dom/svg/crashtests/723441-1.html similarity index 100% rename from content/svg/content/src/crashtests/723441-1.html rename to dom/svg/crashtests/723441-1.html diff --git a/content/svg/content/src/crashtests/723441-resource.svg b/dom/svg/crashtests/723441-resource.svg similarity index 100% rename from content/svg/content/src/crashtests/723441-resource.svg rename to dom/svg/crashtests/723441-resource.svg diff --git a/content/svg/content/src/crashtests/751515-1.svg b/dom/svg/crashtests/751515-1.svg similarity index 100% rename from content/svg/content/src/crashtests/751515-1.svg rename to dom/svg/crashtests/751515-1.svg diff --git a/content/svg/content/src/crashtests/761507-1.svg b/dom/svg/crashtests/761507-1.svg similarity index 100% rename from content/svg/content/src/crashtests/761507-1.svg rename to dom/svg/crashtests/761507-1.svg diff --git a/content/svg/content/src/crashtests/831561.html b/dom/svg/crashtests/831561.html similarity index 100% rename from content/svg/content/src/crashtests/831561.html rename to dom/svg/crashtests/831561.html diff --git a/content/svg/content/src/crashtests/837450-1.svg b/dom/svg/crashtests/837450-1.svg similarity index 100% rename from content/svg/content/src/crashtests/837450-1.svg rename to dom/svg/crashtests/837450-1.svg diff --git a/content/svg/content/src/crashtests/842463-1.html b/dom/svg/crashtests/842463-1.html similarity index 100% rename from content/svg/content/src/crashtests/842463-1.html rename to dom/svg/crashtests/842463-1.html diff --git a/content/svg/content/src/crashtests/847138-1.svg b/dom/svg/crashtests/847138-1.svg similarity index 100% rename from content/svg/content/src/crashtests/847138-1.svg rename to dom/svg/crashtests/847138-1.svg diff --git a/content/svg/content/src/crashtests/864509.svg b/dom/svg/crashtests/864509.svg similarity index 100% rename from content/svg/content/src/crashtests/864509.svg rename to dom/svg/crashtests/864509.svg diff --git a/content/svg/content/src/crashtests/880544-1.svg b/dom/svg/crashtests/880544-1.svg similarity index 100% rename from content/svg/content/src/crashtests/880544-1.svg rename to dom/svg/crashtests/880544-1.svg diff --git a/content/svg/content/src/crashtests/880544-2.svg b/dom/svg/crashtests/880544-2.svg similarity index 100% rename from content/svg/content/src/crashtests/880544-2.svg rename to dom/svg/crashtests/880544-2.svg diff --git a/content/svg/content/src/crashtests/880544-3.svg b/dom/svg/crashtests/880544-3.svg similarity index 100% rename from content/svg/content/src/crashtests/880544-3.svg rename to dom/svg/crashtests/880544-3.svg diff --git a/content/svg/content/src/crashtests/880544-4.svg b/dom/svg/crashtests/880544-4.svg similarity index 100% rename from content/svg/content/src/crashtests/880544-4.svg rename to dom/svg/crashtests/880544-4.svg diff --git a/content/svg/content/src/crashtests/880544-5.svg b/dom/svg/crashtests/880544-5.svg similarity index 100% rename from content/svg/content/src/crashtests/880544-5.svg rename to dom/svg/crashtests/880544-5.svg diff --git a/content/svg/content/src/crashtests/898915-1.svg b/dom/svg/crashtests/898915-1.svg similarity index 100% rename from content/svg/content/src/crashtests/898915-1.svg rename to dom/svg/crashtests/898915-1.svg diff --git a/content/svg/content/src/crashtests/crashtests.list b/dom/svg/crashtests/crashtests.list similarity index 100% rename from content/svg/content/src/crashtests/crashtests.list rename to dom/svg/crashtests/crashtests.list diff --git a/content/svg/content/src/crashtests/zero-size-image.svg b/dom/svg/crashtests/zero-size-image.svg similarity index 100% rename from content/svg/content/src/crashtests/zero-size-image.svg rename to dom/svg/crashtests/zero-size-image.svg diff --git a/content/svg/content/src/moz.build b/dom/svg/moz.build similarity index 98% rename from content/svg/content/src/moz.build rename to dom/svg/moz.build index ef69053ae00a..b3f6eaa419a2 100644 --- a/content/svg/content/src/moz.build +++ b/dom/svg/moz.build @@ -4,6 +4,8 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. +MOCHITEST_MANIFESTS += ['test/mochitest.ini'] + EXPORTS += [ 'nsSVGClass.h', 'nsSVGElement.h', @@ -36,6 +38,7 @@ EXPORTS.mozilla.dom += [ 'SVGComponentTransferFunctionElement.h', 'SVGDefsElement.h', 'SVGDescElement.h', + 'SVGDocument.h', 'SVGEllipseElement.h', 'SVGFEBlendElement.h', 'SVGFEColorMatrixElement.h', @@ -160,6 +163,7 @@ UNIFIED_SOURCES += [ 'SVGContentUtils.cpp', 'SVGDefsElement.cpp', 'SVGDescElement.cpp', + 'SVGDocument.cpp', 'SVGElementFactory.cpp', 'SVGEllipseElement.cpp', 'SVGFEBlendElement.cpp', @@ -255,8 +259,10 @@ FINAL_LIBRARY = 'xul' LOCAL_INCLUDES += [ '/content/base/src', '/content/html/content/src', + '/content/html/document/src', '/dom', '/dom/smil', + '/dom/svg', '/dom/xbl', '/dom/xml', '/layout/base', @@ -265,4 +271,3 @@ LOCAL_INCLUDES += [ '/layout/svg', '/layout/xul', ] - diff --git a/content/svg/content/src/nsISVGPoint.cpp b/dom/svg/nsISVGPoint.cpp similarity index 100% rename from content/svg/content/src/nsISVGPoint.cpp rename to dom/svg/nsISVGPoint.cpp diff --git a/content/svg/content/src/nsISVGPoint.h b/dom/svg/nsISVGPoint.h similarity index 100% rename from content/svg/content/src/nsISVGPoint.h rename to dom/svg/nsISVGPoint.h diff --git a/content/svg/content/src/nsSVGAngle.cpp b/dom/svg/nsSVGAngle.cpp similarity index 100% rename from content/svg/content/src/nsSVGAngle.cpp rename to dom/svg/nsSVGAngle.cpp diff --git a/content/svg/content/src/nsSVGAngle.h b/dom/svg/nsSVGAngle.h similarity index 100% rename from content/svg/content/src/nsSVGAngle.h rename to dom/svg/nsSVGAngle.h diff --git a/content/svg/content/src/nsSVGAnimatedTransformList.cpp b/dom/svg/nsSVGAnimatedTransformList.cpp similarity index 100% rename from content/svg/content/src/nsSVGAnimatedTransformList.cpp rename to dom/svg/nsSVGAnimatedTransformList.cpp diff --git a/content/svg/content/src/nsSVGAnimatedTransformList.h b/dom/svg/nsSVGAnimatedTransformList.h similarity index 100% rename from content/svg/content/src/nsSVGAnimatedTransformList.h rename to dom/svg/nsSVGAnimatedTransformList.h diff --git a/content/svg/content/src/nsSVGAttrTearoffTable.h b/dom/svg/nsSVGAttrTearoffTable.h similarity index 100% rename from content/svg/content/src/nsSVGAttrTearoffTable.h rename to dom/svg/nsSVGAttrTearoffTable.h diff --git a/content/svg/content/src/nsSVGBoolean.cpp b/dom/svg/nsSVGBoolean.cpp similarity index 100% rename from content/svg/content/src/nsSVGBoolean.cpp rename to dom/svg/nsSVGBoolean.cpp diff --git a/content/svg/content/src/nsSVGBoolean.h b/dom/svg/nsSVGBoolean.h similarity index 100% rename from content/svg/content/src/nsSVGBoolean.h rename to dom/svg/nsSVGBoolean.h diff --git a/content/svg/content/src/nsSVGClass.cpp b/dom/svg/nsSVGClass.cpp similarity index 100% rename from content/svg/content/src/nsSVGClass.cpp rename to dom/svg/nsSVGClass.cpp diff --git a/content/svg/content/src/nsSVGClass.h b/dom/svg/nsSVGClass.h similarity index 100% rename from content/svg/content/src/nsSVGClass.h rename to dom/svg/nsSVGClass.h diff --git a/content/svg/content/src/nsSVGDataParser.cpp b/dom/svg/nsSVGDataParser.cpp similarity index 100% rename from content/svg/content/src/nsSVGDataParser.cpp rename to dom/svg/nsSVGDataParser.cpp diff --git a/content/svg/content/src/nsSVGDataParser.h b/dom/svg/nsSVGDataParser.h similarity index 100% rename from content/svg/content/src/nsSVGDataParser.h rename to dom/svg/nsSVGDataParser.h diff --git a/content/svg/content/src/nsSVGElement.cpp b/dom/svg/nsSVGElement.cpp similarity index 100% rename from content/svg/content/src/nsSVGElement.cpp rename to dom/svg/nsSVGElement.cpp diff --git a/content/svg/content/src/nsSVGElement.h b/dom/svg/nsSVGElement.h similarity index 100% rename from content/svg/content/src/nsSVGElement.h rename to dom/svg/nsSVGElement.h diff --git a/content/svg/content/src/nsSVGEnum.cpp b/dom/svg/nsSVGEnum.cpp similarity index 100% rename from content/svg/content/src/nsSVGEnum.cpp rename to dom/svg/nsSVGEnum.cpp diff --git a/content/svg/content/src/nsSVGEnum.h b/dom/svg/nsSVGEnum.h similarity index 100% rename from content/svg/content/src/nsSVGEnum.h rename to dom/svg/nsSVGEnum.h diff --git a/content/svg/content/src/nsSVGFeatures.cpp b/dom/svg/nsSVGFeatures.cpp similarity index 100% rename from content/svg/content/src/nsSVGFeatures.cpp rename to dom/svg/nsSVGFeatures.cpp diff --git a/content/svg/content/src/nsSVGFeatures.h b/dom/svg/nsSVGFeatures.h similarity index 100% rename from content/svg/content/src/nsSVGFeatures.h rename to dom/svg/nsSVGFeatures.h diff --git a/content/svg/content/src/nsSVGFeaturesList.h b/dom/svg/nsSVGFeaturesList.h similarity index 100% rename from content/svg/content/src/nsSVGFeaturesList.h rename to dom/svg/nsSVGFeaturesList.h diff --git a/content/svg/content/src/nsSVGFilters.cpp b/dom/svg/nsSVGFilters.cpp similarity index 100% rename from content/svg/content/src/nsSVGFilters.cpp rename to dom/svg/nsSVGFilters.cpp diff --git a/content/svg/content/src/nsSVGFilters.h b/dom/svg/nsSVGFilters.h similarity index 100% rename from content/svg/content/src/nsSVGFilters.h rename to dom/svg/nsSVGFilters.h diff --git a/content/svg/content/src/nsSVGInteger.cpp b/dom/svg/nsSVGInteger.cpp similarity index 100% rename from content/svg/content/src/nsSVGInteger.cpp rename to dom/svg/nsSVGInteger.cpp diff --git a/content/svg/content/src/nsSVGInteger.h b/dom/svg/nsSVGInteger.h similarity index 100% rename from content/svg/content/src/nsSVGInteger.h rename to dom/svg/nsSVGInteger.h diff --git a/content/svg/content/src/nsSVGIntegerPair.cpp b/dom/svg/nsSVGIntegerPair.cpp similarity index 100% rename from content/svg/content/src/nsSVGIntegerPair.cpp rename to dom/svg/nsSVGIntegerPair.cpp diff --git a/content/svg/content/src/nsSVGIntegerPair.h b/dom/svg/nsSVGIntegerPair.h similarity index 100% rename from content/svg/content/src/nsSVGIntegerPair.h rename to dom/svg/nsSVGIntegerPair.h diff --git a/content/svg/content/src/nsSVGLength2.cpp b/dom/svg/nsSVGLength2.cpp similarity index 100% rename from content/svg/content/src/nsSVGLength2.cpp rename to dom/svg/nsSVGLength2.cpp diff --git a/content/svg/content/src/nsSVGLength2.h b/dom/svg/nsSVGLength2.h similarity index 100% rename from content/svg/content/src/nsSVGLength2.h rename to dom/svg/nsSVGLength2.h diff --git a/content/svg/content/src/nsSVGNumber2.cpp b/dom/svg/nsSVGNumber2.cpp similarity index 100% rename from content/svg/content/src/nsSVGNumber2.cpp rename to dom/svg/nsSVGNumber2.cpp diff --git a/content/svg/content/src/nsSVGNumber2.h b/dom/svg/nsSVGNumber2.h similarity index 100% rename from content/svg/content/src/nsSVGNumber2.h rename to dom/svg/nsSVGNumber2.h diff --git a/content/svg/content/src/nsSVGNumberPair.cpp b/dom/svg/nsSVGNumberPair.cpp similarity index 100% rename from content/svg/content/src/nsSVGNumberPair.cpp rename to dom/svg/nsSVGNumberPair.cpp diff --git a/content/svg/content/src/nsSVGNumberPair.h b/dom/svg/nsSVGNumberPair.h similarity index 100% rename from content/svg/content/src/nsSVGNumberPair.h rename to dom/svg/nsSVGNumberPair.h diff --git a/content/svg/content/src/nsSVGPathDataParser.cpp b/dom/svg/nsSVGPathDataParser.cpp similarity index 100% rename from content/svg/content/src/nsSVGPathDataParser.cpp rename to dom/svg/nsSVGPathDataParser.cpp diff --git a/content/svg/content/src/nsSVGPathDataParser.h b/dom/svg/nsSVGPathDataParser.h similarity index 100% rename from content/svg/content/src/nsSVGPathDataParser.h rename to dom/svg/nsSVGPathDataParser.h diff --git a/content/svg/content/src/nsSVGPathGeometryElement.cpp b/dom/svg/nsSVGPathGeometryElement.cpp similarity index 100% rename from content/svg/content/src/nsSVGPathGeometryElement.cpp rename to dom/svg/nsSVGPathGeometryElement.cpp diff --git a/content/svg/content/src/nsSVGPathGeometryElement.h b/dom/svg/nsSVGPathGeometryElement.h similarity index 100% rename from content/svg/content/src/nsSVGPathGeometryElement.h rename to dom/svg/nsSVGPathGeometryElement.h diff --git a/content/svg/content/src/nsSVGPolyElement.cpp b/dom/svg/nsSVGPolyElement.cpp similarity index 100% rename from content/svg/content/src/nsSVGPolyElement.cpp rename to dom/svg/nsSVGPolyElement.cpp diff --git a/content/svg/content/src/nsSVGPolyElement.h b/dom/svg/nsSVGPolyElement.h similarity index 100% rename from content/svg/content/src/nsSVGPolyElement.h rename to dom/svg/nsSVGPolyElement.h diff --git a/content/svg/content/src/nsSVGString.cpp b/dom/svg/nsSVGString.cpp similarity index 100% rename from content/svg/content/src/nsSVGString.cpp rename to dom/svg/nsSVGString.cpp diff --git a/content/svg/content/src/nsSVGString.h b/dom/svg/nsSVGString.h similarity index 100% rename from content/svg/content/src/nsSVGString.h rename to dom/svg/nsSVGString.h diff --git a/content/svg/content/src/nsSVGTransform.cpp b/dom/svg/nsSVGTransform.cpp similarity index 100% rename from content/svg/content/src/nsSVGTransform.cpp rename to dom/svg/nsSVGTransform.cpp diff --git a/content/svg/content/src/nsSVGTransform.h b/dom/svg/nsSVGTransform.h similarity index 100% rename from content/svg/content/src/nsSVGTransform.h rename to dom/svg/nsSVGTransform.h diff --git a/content/svg/content/src/nsSVGViewBox.cpp b/dom/svg/nsSVGViewBox.cpp similarity index 100% rename from content/svg/content/src/nsSVGViewBox.cpp rename to dom/svg/nsSVGViewBox.cpp diff --git a/content/svg/content/src/nsSVGViewBox.h b/dom/svg/nsSVGViewBox.h similarity index 100% rename from content/svg/content/src/nsSVGViewBox.h rename to dom/svg/nsSVGViewBox.h diff --git a/content/svg/content/test/MutationEventChecker.js b/dom/svg/test/MutationEventChecker.js similarity index 100% rename from content/svg/content/test/MutationEventChecker.js rename to dom/svg/test/MutationEventChecker.js diff --git a/content/svg/content/test/a_href_destination.svg b/dom/svg/test/a_href_destination.svg similarity index 100% rename from content/svg/content/test/a_href_destination.svg rename to dom/svg/test/a_href_destination.svg diff --git a/content/svg/content/test/a_href_helper_01.svg b/dom/svg/test/a_href_helper_01.svg similarity index 100% rename from content/svg/content/test/a_href_helper_01.svg rename to dom/svg/test/a_href_helper_01.svg diff --git a/content/svg/content/test/a_href_helper_02_03.svg b/dom/svg/test/a_href_helper_02_03.svg similarity index 100% rename from content/svg/content/test/a_href_helper_02_03.svg rename to dom/svg/test/a_href_helper_02_03.svg diff --git a/content/svg/content/test/a_href_helper_04.svg b/dom/svg/test/a_href_helper_04.svg similarity index 100% rename from content/svg/content/test/a_href_helper_04.svg rename to dom/svg/test/a_href_helper_04.svg diff --git a/content/svg/content/test/animated-svg-image-helper.html b/dom/svg/test/animated-svg-image-helper.html similarity index 100% rename from content/svg/content/test/animated-svg-image-helper.html rename to dom/svg/test/animated-svg-image-helper.html diff --git a/content/svg/content/test/animated-svg-image-helper.svg b/dom/svg/test/animated-svg-image-helper.svg similarity index 100% rename from content/svg/content/test/animated-svg-image-helper.svg rename to dom/svg/test/animated-svg-image-helper.svg diff --git a/content/svg/content/test/bbox-helper.svg b/dom/svg/test/bbox-helper.svg similarity index 100% rename from content/svg/content/test/bbox-helper.svg rename to dom/svg/test/bbox-helper.svg diff --git a/content/svg/content/test/bounds-helper.svg b/dom/svg/test/bounds-helper.svg similarity index 100% rename from content/svg/content/test/bounds-helper.svg rename to dom/svg/test/bounds-helper.svg diff --git a/content/svg/content/test/dataTypes-helper.svg b/dom/svg/test/dataTypes-helper.svg similarity index 100% rename from content/svg/content/test/dataTypes-helper.svg rename to dom/svg/test/dataTypes-helper.svg diff --git a/content/svg/content/test/fragments-helper.svg b/dom/svg/test/fragments-helper.svg similarity index 100% rename from content/svg/content/test/fragments-helper.svg rename to dom/svg/test/fragments-helper.svg diff --git a/content/svg/content/test/getBBox-method-helper.svg b/dom/svg/test/getBBox-method-helper.svg similarity index 100% rename from content/svg/content/test/getBBox-method-helper.svg rename to dom/svg/test/getBBox-method-helper.svg diff --git a/content/svg/content/test/getCTM-helper.svg b/dom/svg/test/getCTM-helper.svg similarity index 100% rename from content/svg/content/test/getCTM-helper.svg rename to dom/svg/test/getCTM-helper.svg diff --git a/content/svg/content/test/getSubStringLength-helper.svg b/dom/svg/test/getSubStringLength-helper.svg similarity index 100% rename from content/svg/content/test/getSubStringLength-helper.svg rename to dom/svg/test/getSubStringLength-helper.svg diff --git a/content/svg/content/test/matrixUtils.js b/dom/svg/test/matrixUtils.js similarity index 100% rename from content/svg/content/test/matrixUtils.js rename to dom/svg/test/matrixUtils.js diff --git a/content/svg/content/test/mochitest.ini b/dom/svg/test/mochitest.ini similarity index 100% rename from content/svg/content/test/mochitest.ini rename to dom/svg/test/mochitest.ini diff --git a/content/svg/content/test/object-delayed-intrinsic-size.sjs b/dom/svg/test/object-delayed-intrinsic-size.sjs similarity index 100% rename from content/svg/content/test/object-delayed-intrinsic-size.sjs rename to dom/svg/test/object-delayed-intrinsic-size.sjs diff --git a/content/svg/content/test/pointer-events.js b/dom/svg/test/pointer-events.js similarity index 100% rename from content/svg/content/test/pointer-events.js rename to dom/svg/test/pointer-events.js diff --git a/content/svg/content/test/scientific-helper.svg b/dom/svg/test/scientific-helper.svg similarity index 100% rename from content/svg/content/test/scientific-helper.svg rename to dom/svg/test/scientific-helper.svg diff --git a/content/svg/content/test/selectSubString-helper.svg b/dom/svg/test/selectSubString-helper.svg similarity index 100% rename from content/svg/content/test/selectSubString-helper.svg rename to dom/svg/test/selectSubString-helper.svg diff --git a/content/svg/content/test/switch-helper.svg b/dom/svg/test/switch-helper.svg similarity index 100% rename from content/svg/content/test/switch-helper.svg rename to dom/svg/test/switch-helper.svg diff --git a/content/svg/content/test/test_SVGLengthList-2.xhtml b/dom/svg/test/test_SVGLengthList-2.xhtml similarity index 100% rename from content/svg/content/test/test_SVGLengthList-2.xhtml rename to dom/svg/test/test_SVGLengthList-2.xhtml diff --git a/content/svg/content/test/test_SVGLengthList.xhtml b/dom/svg/test/test_SVGLengthList.xhtml similarity index 100% rename from content/svg/content/test/test_SVGLengthList.xhtml rename to dom/svg/test/test_SVGLengthList.xhtml diff --git a/content/svg/content/test/test_SVGMatrix.xhtml b/dom/svg/test/test_SVGMatrix.xhtml similarity index 100% rename from content/svg/content/test/test_SVGMatrix.xhtml rename to dom/svg/test/test_SVGMatrix.xhtml diff --git a/content/svg/content/test/test_SVGNumberList.xhtml b/dom/svg/test/test_SVGNumberList.xhtml similarity index 100% rename from content/svg/content/test/test_SVGNumberList.xhtml rename to dom/svg/test/test_SVGNumberList.xhtml diff --git a/content/svg/content/test/test_SVGPathSegList.xhtml b/dom/svg/test/test_SVGPathSegList.xhtml similarity index 100% rename from content/svg/content/test/test_SVGPathSegList.xhtml rename to dom/svg/test/test_SVGPathSegList.xhtml diff --git a/content/svg/content/test/test_SVGPointList.xhtml b/dom/svg/test/test_SVGPointList.xhtml similarity index 100% rename from content/svg/content/test/test_SVGPointList.xhtml rename to dom/svg/test/test_SVGPointList.xhtml diff --git a/content/svg/content/test/test_SVGStringList.xhtml b/dom/svg/test/test_SVGStringList.xhtml similarity index 100% rename from content/svg/content/test/test_SVGStringList.xhtml rename to dom/svg/test/test_SVGStringList.xhtml diff --git a/content/svg/content/test/test_SVGStyleElement.xhtml b/dom/svg/test/test_SVGStyleElement.xhtml similarity index 100% rename from content/svg/content/test/test_SVGStyleElement.xhtml rename to dom/svg/test/test_SVGStyleElement.xhtml diff --git a/content/svg/content/test/test_SVGTransformList.xhtml b/dom/svg/test/test_SVGTransformList.xhtml similarity index 100% rename from content/svg/content/test/test_SVGTransformList.xhtml rename to dom/svg/test/test_SVGTransformList.xhtml diff --git a/content/svg/content/test/test_SVGTransformListAddition.xhtml b/dom/svg/test/test_SVGTransformListAddition.xhtml similarity index 100% rename from content/svg/content/test/test_SVGTransformListAddition.xhtml rename to dom/svg/test/test_SVGTransformListAddition.xhtml diff --git a/content/svg/content/test/test_SVGUnitTypes.html b/dom/svg/test/test_SVGUnitTypes.html similarity index 100% rename from content/svg/content/test/test_SVGUnitTypes.html rename to dom/svg/test/test_SVGUnitTypes.html diff --git a/content/svg/content/test/test_SVG_namespace_ids.html b/dom/svg/test/test_SVG_namespace_ids.html similarity index 100% rename from content/svg/content/test/test_SVG_namespace_ids.html rename to dom/svg/test/test_SVG_namespace_ids.html diff --git a/content/svg/content/test/test_SVGxxxList.xhtml b/dom/svg/test/test_SVGxxxList.xhtml similarity index 100% rename from content/svg/content/test/test_SVGxxxList.xhtml rename to dom/svg/test/test_SVGxxxList.xhtml diff --git a/content/svg/content/test/test_SVGxxxListIndexing.xhtml b/dom/svg/test/test_SVGxxxListIndexing.xhtml similarity index 100% rename from content/svg/content/test/test_SVGxxxListIndexing.xhtml rename to dom/svg/test/test_SVGxxxListIndexing.xhtml diff --git a/content/svg/content/test/test_a_href_01.xhtml b/dom/svg/test/test_a_href_01.xhtml similarity index 100% rename from content/svg/content/test/test_a_href_01.xhtml rename to dom/svg/test/test_a_href_01.xhtml diff --git a/content/svg/content/test/test_a_href_02.xhtml b/dom/svg/test/test_a_href_02.xhtml similarity index 100% rename from content/svg/content/test/test_a_href_02.xhtml rename to dom/svg/test/test_a_href_02.xhtml diff --git a/content/svg/content/test/test_animLengthObjectIdentity.xhtml b/dom/svg/test/test_animLengthObjectIdentity.xhtml similarity index 100% rename from content/svg/content/test/test_animLengthObjectIdentity.xhtml rename to dom/svg/test/test_animLengthObjectIdentity.xhtml diff --git a/content/svg/content/test/test_animLengthReadonly.xhtml b/dom/svg/test/test_animLengthReadonly.xhtml similarity index 100% rename from content/svg/content/test/test_animLengthReadonly.xhtml rename to dom/svg/test/test_animLengthReadonly.xhtml diff --git a/content/svg/content/test/test_animLengthUnits.xhtml b/dom/svg/test/test_animLengthUnits.xhtml similarity index 100% rename from content/svg/content/test/test_animLengthUnits.xhtml rename to dom/svg/test/test_animLengthUnits.xhtml diff --git a/content/svg/content/test/test_bbox-with-invalid-viewBox.xhtml b/dom/svg/test/test_bbox-with-invalid-viewBox.xhtml similarity index 100% rename from content/svg/content/test/test_bbox-with-invalid-viewBox.xhtml rename to dom/svg/test/test_bbox-with-invalid-viewBox.xhtml diff --git a/content/svg/content/test/test_bbox.xhtml b/dom/svg/test/test_bbox.xhtml similarity index 100% rename from content/svg/content/test/test_bbox.xhtml rename to dom/svg/test/test_bbox.xhtml diff --git a/content/svg/content/test/test_bounds.html b/dom/svg/test/test_bounds.html similarity index 100% rename from content/svg/content/test/test_bounds.html rename to dom/svg/test/test_bounds.html diff --git a/content/svg/content/test/test_bug872812.html b/dom/svg/test/test_bug872812.html similarity index 100% rename from content/svg/content/test/test_bug872812.html rename to dom/svg/test/test_bug872812.html diff --git a/content/svg/content/test/test_dataTypes.html b/dom/svg/test/test_dataTypes.html similarity index 100% rename from content/svg/content/test/test_dataTypes.html rename to dom/svg/test/test_dataTypes.html diff --git a/content/svg/content/test/test_dataTypesModEvents.html b/dom/svg/test/test_dataTypesModEvents.html similarity index 100% rename from content/svg/content/test/test_dataTypesModEvents.html rename to dom/svg/test/test_dataTypesModEvents.html diff --git a/content/svg/content/test/test_fragments.html b/dom/svg/test/test_fragments.html similarity index 100% rename from content/svg/content/test/test_fragments.html rename to dom/svg/test/test_fragments.html diff --git a/content/svg/content/test/test_getBBox-method.html b/dom/svg/test/test_getBBox-method.html similarity index 100% rename from content/svg/content/test/test_getBBox-method.html rename to dom/svg/test/test_getBBox-method.html diff --git a/content/svg/content/test/test_getCTM.html b/dom/svg/test/test_getCTM.html similarity index 100% rename from content/svg/content/test/test_getCTM.html rename to dom/svg/test/test_getCTM.html diff --git a/content/svg/content/test/test_getElementById.xhtml b/dom/svg/test/test_getElementById.xhtml similarity index 100% rename from content/svg/content/test/test_getElementById.xhtml rename to dom/svg/test/test_getElementById.xhtml diff --git a/content/svg/content/test/test_getSubStringLength.xhtml b/dom/svg/test/test_getSubStringLength.xhtml similarity index 100% rename from content/svg/content/test/test_getSubStringLength.xhtml rename to dom/svg/test/test_getSubStringLength.xhtml diff --git a/content/svg/content/test/test_hasFeature.xhtml b/dom/svg/test/test_hasFeature.xhtml similarity index 99% rename from content/svg/content/test/test_hasFeature.xhtml rename to dom/svg/test/test_hasFeature.xhtml index 03e1dba53544..aa64e999eb01 100644 --- a/content/svg/content/test/test_hasFeature.xhtml +++ b/dom/svg/test/test_hasFeature.xhtml @@ -64,7 +64,7 @@ var features = [ ["XPath", "3.0", "true"], // current SVG feature string support status: - // content/svg/content/src/nsSVGFeaturesList.h + // dom/svg/nsSVGFeaturesList.h // SVG 1.1 // Static festures ["http://www.w3.org/TR/SVG11/feature#CoreAttribute", "1.1", true], diff --git a/content/svg/content/test/test_lang.xhtml b/dom/svg/test/test_lang.xhtml similarity index 100% rename from content/svg/content/test/test_lang.xhtml rename to dom/svg/test/test_lang.xhtml diff --git a/content/svg/content/test/test_length.xhtml b/dom/svg/test/test_length.xhtml similarity index 100% rename from content/svg/content/test/test_length.xhtml rename to dom/svg/test/test_length.xhtml diff --git a/content/svg/content/test/test_lengthParsing.html b/dom/svg/test/test_lengthParsing.html similarity index 100% rename from content/svg/content/test/test_lengthParsing.html rename to dom/svg/test/test_lengthParsing.html diff --git a/content/svg/content/test/test_non-scaling-stroke.html b/dom/svg/test/test_non-scaling-stroke.html similarity index 100% rename from content/svg/content/test/test_non-scaling-stroke.html rename to dom/svg/test/test_non-scaling-stroke.html diff --git a/content/svg/content/test/test_nonAnimStrings.xhtml b/dom/svg/test/test_nonAnimStrings.xhtml similarity index 100% rename from content/svg/content/test/test_nonAnimStrings.xhtml rename to dom/svg/test/test_nonAnimStrings.xhtml diff --git a/content/svg/content/test/test_object-delayed-intrinsic-size.html b/dom/svg/test/test_object-delayed-intrinsic-size.html similarity index 100% rename from content/svg/content/test/test_object-delayed-intrinsic-size.html rename to dom/svg/test/test_object-delayed-intrinsic-size.html diff --git a/content/svg/content/test/test_onerror.xhtml b/dom/svg/test/test_onerror.xhtml similarity index 100% rename from content/svg/content/test/test_onerror.xhtml rename to dom/svg/test/test_onerror.xhtml diff --git a/content/svg/content/test/test_pathAnimInterpolation.xhtml b/dom/svg/test/test_pathAnimInterpolation.xhtml similarity index 100% rename from content/svg/content/test/test_pathAnimInterpolation.xhtml rename to dom/svg/test/test_pathAnimInterpolation.xhtml diff --git a/content/svg/content/test/test_pathLength.html b/dom/svg/test/test_pathLength.html similarity index 100% rename from content/svg/content/test/test_pathLength.html rename to dom/svg/test/test_pathLength.html diff --git a/content/svg/content/test/test_pathSeg.xhtml b/dom/svg/test/test_pathSeg.xhtml similarity index 100% rename from content/svg/content/test/test_pathSeg.xhtml rename to dom/svg/test/test_pathSeg.xhtml diff --git a/content/svg/content/test/test_pointAtLength.xhtml b/dom/svg/test/test_pointAtLength.xhtml similarity index 100% rename from content/svg/content/test/test_pointAtLength.xhtml rename to dom/svg/test/test_pointAtLength.xhtml diff --git a/content/svg/content/test/test_pointer-events-1a.xhtml b/dom/svg/test/test_pointer-events-1a.xhtml similarity index 100% rename from content/svg/content/test/test_pointer-events-1a.xhtml rename to dom/svg/test/test_pointer-events-1a.xhtml diff --git a/content/svg/content/test/test_pointer-events-1b.xhtml b/dom/svg/test/test_pointer-events-1b.xhtml similarity index 100% rename from content/svg/content/test/test_pointer-events-1b.xhtml rename to dom/svg/test/test_pointer-events-1b.xhtml diff --git a/content/svg/content/test/test_pointer-events-2.xhtml b/dom/svg/test/test_pointer-events-2.xhtml similarity index 100% rename from content/svg/content/test/test_pointer-events-2.xhtml rename to dom/svg/test/test_pointer-events-2.xhtml diff --git a/content/svg/content/test/test_pointer-events-3.xhtml b/dom/svg/test/test_pointer-events-3.xhtml similarity index 100% rename from content/svg/content/test/test_pointer-events-3.xhtml rename to dom/svg/test/test_pointer-events-3.xhtml diff --git a/content/svg/content/test/test_pointer-events-4.xhtml b/dom/svg/test/test_pointer-events-4.xhtml similarity index 100% rename from content/svg/content/test/test_pointer-events-4.xhtml rename to dom/svg/test/test_pointer-events-4.xhtml diff --git a/content/svg/content/test/test_pointer-events-5.xhtml b/dom/svg/test/test_pointer-events-5.xhtml similarity index 100% rename from content/svg/content/test/test_pointer-events-5.xhtml rename to dom/svg/test/test_pointer-events-5.xhtml diff --git a/content/svg/content/test/test_pointer-events-6.xhtml b/dom/svg/test/test_pointer-events-6.xhtml similarity index 100% rename from content/svg/content/test/test_pointer-events-6.xhtml rename to dom/svg/test/test_pointer-events-6.xhtml diff --git a/content/svg/content/test/test_scientific.html b/dom/svg/test/test_scientific.html similarity index 100% rename from content/svg/content/test/test_scientific.html rename to dom/svg/test/test_scientific.html diff --git a/content/svg/content/test/test_selectSubString.xhtml b/dom/svg/test/test_selectSubString.xhtml similarity index 100% rename from content/svg/content/test/test_selectSubString.xhtml rename to dom/svg/test/test_selectSubString.xhtml diff --git a/content/svg/content/test/test_stroke-linecap-hit-testing.xhtml b/dom/svg/test/test_stroke-linecap-hit-testing.xhtml similarity index 100% rename from content/svg/content/test/test_stroke-linecap-hit-testing.xhtml rename to dom/svg/test/test_stroke-linecap-hit-testing.xhtml diff --git a/content/svg/content/test/test_switch.xhtml b/dom/svg/test/test_switch.xhtml similarity index 100% rename from content/svg/content/test/test_switch.xhtml rename to dom/svg/test/test_switch.xhtml diff --git a/content/svg/content/test/test_text.html b/dom/svg/test/test_text.html similarity index 100% rename from content/svg/content/test/test_text.html rename to dom/svg/test/test_text.html diff --git a/content/svg/content/test/test_text_2.html b/dom/svg/test/test_text_2.html similarity index 100% rename from content/svg/content/test/test_text_2.html rename to dom/svg/test/test_text_2.html diff --git a/content/svg/content/test/test_text_dirty.html b/dom/svg/test/test_text_dirty.html similarity index 100% rename from content/svg/content/test/test_text_dirty.html rename to dom/svg/test/test_text_dirty.html diff --git a/content/svg/content/test/test_text_lengthAdjust.html b/dom/svg/test/test_text_lengthAdjust.html similarity index 100% rename from content/svg/content/test/test_text_lengthAdjust.html rename to dom/svg/test/test_text_lengthAdjust.html diff --git a/content/svg/content/test/test_text_scaled.html b/dom/svg/test/test_text_scaled.html similarity index 100% rename from content/svg/content/test/test_text_scaled.html rename to dom/svg/test/test_text_scaled.html diff --git a/content/svg/content/test/test_text_selection.html b/dom/svg/test/test_text_selection.html similarity index 100% rename from content/svg/content/test/test_text_selection.html rename to dom/svg/test/test_text_selection.html diff --git a/content/svg/content/test/test_text_update.html b/dom/svg/test/test_text_update.html similarity index 100% rename from content/svg/content/test/test_text_update.html rename to dom/svg/test/test_text_update.html diff --git a/content/svg/content/test/test_transform.xhtml b/dom/svg/test/test_transform.xhtml similarity index 100% rename from content/svg/content/test/test_transform.xhtml rename to dom/svg/test/test_transform.xhtml diff --git a/content/svg/content/test/test_transformParsing.html b/dom/svg/test/test_transformParsing.html similarity index 100% rename from content/svg/content/test/test_transformParsing.html rename to dom/svg/test/test_transformParsing.html diff --git a/content/svg/content/test/test_valueAsString.xhtml b/dom/svg/test/test_valueAsString.xhtml similarity index 100% rename from content/svg/content/test/test_valueAsString.xhtml rename to dom/svg/test/test_valueAsString.xhtml diff --git a/content/svg/content/test/test_valueLeaks.xhtml b/dom/svg/test/test_valueLeaks.xhtml similarity index 100% rename from content/svg/content/test/test_valueLeaks.xhtml rename to dom/svg/test/test_valueLeaks.xhtml diff --git a/content/svg/content/test/test_viewport.html b/dom/svg/test/test_viewport.html similarity index 100% rename from content/svg/content/test/test_viewport.html rename to dom/svg/test/test_viewport.html diff --git a/content/svg/content/test/test_zoom.xhtml b/dom/svg/test/test_zoom.xhtml similarity index 100% rename from content/svg/content/test/test_zoom.xhtml rename to dom/svg/test/test_zoom.xhtml diff --git a/content/svg/content/test/text-helper-scaled.svg b/dom/svg/test/text-helper-scaled.svg similarity index 100% rename from content/svg/content/test/text-helper-scaled.svg rename to dom/svg/test/text-helper-scaled.svg diff --git a/content/svg/content/test/text-helper-selection.svg b/dom/svg/test/text-helper-selection.svg similarity index 100% rename from content/svg/content/test/text-helper-selection.svg rename to dom/svg/test/text-helper-selection.svg diff --git a/content/svg/content/test/text-helper.svg b/dom/svg/test/text-helper.svg similarity index 100% rename from content/svg/content/test/text-helper.svg rename to dom/svg/test/text-helper.svg diff --git a/content/svg/content/test/viewport-helper.svg b/dom/svg/test/viewport-helper.svg similarity index 100% rename from content/svg/content/test/viewport-helper.svg rename to dom/svg/test/viewport-helper.svg diff --git a/content/svg/content/test/zoom-helper.svg b/dom/svg/test/zoom-helper.svg similarity index 100% rename from content/svg/content/test/zoom-helper.svg rename to dom/svg/test/zoom-helper.svg diff --git a/embedding/browser/moz.build b/embedding/browser/moz.build index 4dc2b7d2afef..077395037df6 100644 --- a/embedding/browser/moz.build +++ b/embedding/browser/moz.build @@ -51,5 +51,5 @@ FAIL_ON_WARNINGS = True FINAL_LIBRARY = 'xul' LOCAL_INCLUDES += [ '/content/base/src', - '/content/svg/content/src', + '/dom/svg', ] diff --git a/image/src/moz.build b/image/src/moz.build index 1ea581711a7c..5bf4c08349a9 100644 --- a/image/src/moz.build +++ b/image/src/moz.build @@ -56,7 +56,7 @@ FINAL_LIBRARY = 'xul' LOCAL_INCLUDES += [ # Because SVGDocumentWrapper.cpp includes "mozilla/dom/SVGSVGElement.h" '/content/base/src', - '/content/svg/content/src', + '/dom/svg', # We need to instantiate the decoders '/image/decoders', # Because VectorImage.cpp includes nsSVGUtils.h and nsSVGEffects.h diff --git a/js/xpconnect/src/moz.build b/js/xpconnect/src/moz.build index cd609f2647e0..cb8dd16fd974 100644 --- a/js/xpconnect/src/moz.build +++ b/js/xpconnect/src/moz.build @@ -66,8 +66,8 @@ LOCAL_INCLUDES += [ '/content/base/src', '/content/html/content/src', '/content/html/document/src', - '/content/svg/content/src', '/dom/base', + '/dom/svg', '/dom/workers', '/js/ipc', '/layout/base', diff --git a/layout/base/moz.build b/layout/base/moz.build index 6690fcadd699..176b6f0686bb 100644 --- a/layout/base/moz.build +++ b/layout/base/moz.build @@ -117,7 +117,6 @@ include('/ipc/chromium/chromium-config.mozbuild') LOCAL_INCLUDES += [ '../../content/base/src', '../../content/html/content/src', - '../../content/svg/content/src', '../forms', '../generic', '../mathml', @@ -129,6 +128,7 @@ LOCAL_INCLUDES += [ '../xul/tree/', '/docshell/base', '/dom/base', + '/dom/svg', '/dom/xbl', '/view', ] diff --git a/layout/build/moz.build b/layout/build/moz.build index 9c83178b0b9e..9b6c42a7888d 100644 --- a/layout/build/moz.build +++ b/layout/build/moz.build @@ -40,7 +40,6 @@ LOCAL_INCLUDES += [ '/content/base/src', '/content/html/content/src', '/content/html/document/src', - '/content/svg/content/src', '/docshell/base', '/dom/audiochannel', '/dom/base', @@ -54,6 +53,7 @@ LOCAL_INCLUDES += [ '/dom/offline', '/dom/speakermanager', '/dom/storage', + '/dom/svg', '/dom/telephony', '/dom/xbl', '/dom/xslt/base', diff --git a/layout/svg/moz.build b/layout/svg/moz.build index 11583c864a9c..bfbbced81dc1 100644 --- a/layout/svg/moz.build +++ b/layout/svg/moz.build @@ -53,12 +53,12 @@ FAIL_ON_WARNINGS = True FINAL_LIBRARY = 'xul' LOCAL_INCLUDES += [ '../../content/base/src', - '../../content/svg/content/src', '../../widget', '../base', '../generic', '../style', '../xul', + '/dom/svg', ] RESOURCE_FILES += [ diff --git a/testing/crashtest/crashtests.list b/testing/crashtest/crashtests.list index 06dcc89f77eb..cd6e2004a3d0 100644 --- a/testing/crashtest/crashtests.list +++ b/testing/crashtest/crashtests.list @@ -9,7 +9,6 @@ include ../../content/base/crashtests/crashtests.list include ../../content/html/content/crashtests/crashtests.list include ../../content/html/document/crashtests/crashtests.list include ../../content/media/test/crashtests/crashtests.list -include ../../content/svg/content/src/crashtests/crashtests.list include ../../docshell/base/crashtests/crashtests.list @@ -23,6 +22,7 @@ include ../../dom/mathml/crashtests/crashtests.list include ../../dom/offline/crashtests/crashtests.list include ../../dom/plugins/test/crashtests/crashtests.list include ../../dom/smil/crashtests/crashtests.list +include ../../dom/svg/crashtests/crashtests.list include ../../dom/workers/test/crashtests.list include ../../dom/xbl/crashtests/crashtests.list include ../../dom/xml/crashtests/crashtests.list